我的应用程序的location update service
未显示在牛轧糖设备的列表中。但它显示在较低的设备中。
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, flags, startId);
return START_STICKY;
}
答案 0 :(得分:0)
这是由于android 7.0中的后台执行限制,您必须使用作业调度程序或前台服务来获取后台中的位置.refer Android 7.0 platform changes