Android-BLE-Scan-Example
Android-BLE-Scan-Example copied to clipboard
This is a simple example app that turns on ble and scans for devices, listing them out. It's for Android API 23
details: https://stackoverflow.com/questions/58428763/android-10-not-working-with-ble-bluetooth-scanning add to manifest: ``` ``` You may want to change in MainActivity: ``` protected void onCreate(Bundle savedInstanceState) { ... CheckPermissions(new String[] { Manifest.permission.ACCESS_COARSE_LOCATION, Manifest.permission.ACCESS_BACKGROUND_LOCATION, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.BLUETOOTH_ADMIN});...
My devices are advertising the device name but I don't what the f problem with BLE it is not reading whole advertising data can you please tell me how to...
looks hard to set up with last android studio