服务未在牛轧糖的后台运行

时间:2017-10-05 12:23:44

标签: android

我的应用程序的location update service未显示在牛轧糖设备的列表中。但它显示在较低的设备中。

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    super.onStartCommand(intent, flags, startId);

    return START_STICKY;
}

1 个答案:

答案 0 :(得分:0)

这是由于android 7.0中的后台执行限制,您必须使用作业调度程序或前台服务来获取后台中的位置.refer Android 7.0 platform changes