android - Service is not working as expected -
i have written 1 service.it work nexus, samsung, sony , moto in phones xiaomi, leeco not work. when kill app service stopped in xiaomi worked in other phones. i'm not able figureout exact issue. can me find out. have tested in xiaomi phone , not working expected. here code please try figure out. have declare in manifest file well.thanks as every said remove location interface.so, have removed , sill not work in background in mi phone.any solution please suggest.one more things ondestroy of service not call.when try kill app i have tried other ways alarm manager, job scheduler, broadcast receiver public class myservice extends service { private final localbinder binder = new localbinder(); @override public ibinder onbind(intent paramintent) { return this.binder; } @override public int onstartcommand(intent intent, int flags, int startid) { return service.start_sticky; } @override public void oncreate() { super.oncreate(); } public class localbinder ex...