I am working on Android App
which supports BLE
devices.
- In some mobile with Android 6. app is and ble service is killing by OS.
- Is anyone having any idea how to keep running my app in background and after killing the app?
Using START_STICKY
on service:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;}