We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4518939 commit 0c87adcCopy full SHA for 0c87adc
.gitignore
@@ -8,3 +8,6 @@
8
.externalNativeBuild
9
.cxx
10
local.properties
11
+
12
+keystore.jks
13
+signing.properties
app/src/main/java/moe/reimu/ancsreceiver/ble/BleDevice.kt
@@ -358,6 +358,7 @@ class BleDevice(private val nativeDevice: BluetoothDevice) : Closeable {
358
get() = nativeDevice.address
359
360
val name
361
+ @RequiresPermission(Manifest.permission.BLUETOOTH_CONNECT)
362
get() = nativeDevice.name
363
364
open class BleException(message: String) : Exception(message)
0 commit comments