Fixed
Status Update
Comments
uc...@google.com <uc...@google.com> #2
I have the same issue on a Nexus 9 running Android 6.0.
Is there any way to scan BLE devices without enabling location service?
Is there any way to scan BLE devices without enabling location service?
ra...@gmail.com <ra...@gmail.com> #3
I'm having the same issue. This doesn't seem like it should be necessary. For me I had to enable GPS in order for scanning to work. Now I must put a prompt up to tell the user they must enable GPS when our app actually has an optional tracking feature which they may have disabled. So now even customers who don' want GPS must turn it on to connect with the BLE device.
uc...@google.com <uc...@google.com> #4
same issue with a Nexus 5 with Android 6.0. As previous comment says, we will now need to add something to ask the user to enable location. Doesn't make any sense since we don't need location at all at that point, we just need to scan for devices.
tn...@google.com <tn...@google.com> #5
Hi,
Thank you for reporting this issue. We have passed this on to the development team and will update this issue with more information as it becomes available.
Thank you for reporting this issue. We have passed this on to the development team and will update this issue with more information as it becomes available.
ra...@gmail.com <ra...@gmail.com> #6
I'm having the same issue with the Deprecated BluetoothAdapter.startLeScan on several Nexus 5 running Android 6.0
Description
inline fun <T> T.applyForOreoAndAbove(block: T.() -> Unit): T {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
block()
}
return this
}
Unfortunately, in the AS 3.0.1 and AS 3.1 alpha 7 lint is complaining