appleMain.PlatformAdvertisement.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kable-core Show documentation
Show all versions of kable-core Show documentation
Kotlin Asynchronous Bluetooth Low Energy
package com.juul.kable
import com.benasher44.uuid.Uuid
import platform.Foundation.NSData
public actual interface PlatformAdvertisement : Advertisement {
public fun serviceDataAsNSData(uuid: Uuid): NSData?
public val manufacturerDataAsNSData: NSData?
public fun manufacturerDataAsNSData(companyIdentifierCode: Int): NSData?
}