GPS跟踪的前台服务在一段时间后停止工作

Posted

技术标签:

【中文标题】GPS跟踪的前台服务在一段时间后停止工作【英文标题】:Foreground service for GPS tracking stops working after time 【发布时间】:2021-07-31 17:08:40 【问题描述】:

背景: 我们有一个应用程序可以为一群人进行时间登记。在此示例中,我们使用 Zebra TC26(型号:TC26BK-11A222-A6)并通过扫描为多人打卡。 接下来,该应用程序会跟踪手机的 GPS 位置,以定位在哪个领域执行活动。然后,农民可以更准确地计算每块土地的成本。

android 10 之前,这一切都很好。 现在我的设备上有我在 1 小时或 1 小时 30 分之后没有获得新位置的信息。 在另一台设备上,我有时会得到更长的时间,但它也停止了。 自 Android 10 以来,我遇到了问题,我在网上找到了很多信息,但似乎并没有解决问题。 一个正常的工作日:

早上 8 点左右开始。然后设备在口袋里直到午餐 下午 1:00 到下午 1:30 之间的午餐,设备再次放入口袋。 下午 5 点左右结束。

所以在工作期间他们不使用手机。

额外

过去我曾尝试在屏幕上使用唤醒锁。这适用于 android 8/9 再次激活 GPS。但这不适用于 android 10/11 我还添加了不需要的后台位置访问,但如果这有影响,我是否可以启用“始终定位”。 antiDoze 服务也是几年前用来保持 CPU 唤醒的东西。请注意,通知的 channelID 是相同的。我不知道这是否有影响。 我还在我的应用程序中看到,大多数时候(如 99%)服务器仍会从设备接收数据,但该位置是空的。在 1% 的情况下,设备不发送数据。 我不使用保险丝位置提供程序,因为并非所有设备都具有 GMS 服务。 答案可能是我需要重写一些东西。对我来说这不是问题,因为我的最终目标是拥有一个可以工作的产品。如果是这种情况,请向我提供详细的计划以及放置内容的位置或提供教程链接。

清单:(我省略了一些权限和 antiDozeService,因为我认为它们与 GPS 部分无关)

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION"/>

 <activity android:name=".SplashActivity"
           android:theme="@style/SplashTheme">
               <intent-filter>
                  <action android:name="android.intent.action.MAIN" />
                  <category android:name="android.intent.category.LAUNCHER" />
               </intent-filter>
</activity>
<activity android:name=".MainActivity" 
          android:launchMode="singleTop" 
          android:windowSoftInputMode="stateAlwaysHidden">
            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
</activity>

<service
   android:name=".Services.LocationTracker"
   android:enabled="true"
   android:foregroundServiceType="location">
</service>

主要活动(注意,启动活动是入口点,但后来添加,因此仍称为主要活动)

protected void onCreate(Bundle savedInstanceState)

 ...

  Intent service = new Intent(this, xxx.LocationTracker.class);
  service.setAction("STARTFOREGROUND_ACTION");
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) 
         startForegroundService(service);
   else
        startService(service);
   

LocationTracker:(onStartCommand)

public int onStartCommand(Intent intent, int flags, int startId) 
        //Show notification
        Intent notificationIntent = new Intent(mContext, MainActivity.class);
        notificationIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
        PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, notificationIntent, 0);

        //Create notification channel
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) 
            CharSequence name = getString(R.string.service_channel_name);
            String description = getString(R.string.service_channel_description);
            int importance = NotificationManager.IMPORTANCE_DEFAULT;
            NotificationChannel channel = new NotificationChannel("12345678", name, importance);
            channel.setDescription(description);
            // Register the channel with the system; you can't change the importance
            // or other notification behaviors after this
            NotificationManager notificationManager = getSystemService(NotificationManager.class);
            notificationManager.createNotificationChannel(channel);
        

        Notification notification = new NotificationCompat.Builder(this, "12345678")
                .setContentTitle("My app title")
                .setTicker("My app title")
                .setContentText("Application is running")
                .setSmallIcon(R.drawable.xxxx)
                .setContentIntent(pendingIntent)
                .build();

        // starts this service as foreground
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q)
        
            startForeground(NOTIFICATION_ID, notification, ServiceInfo.FOREGROUND_SERVICE_TYPE_LOCATION);
            //=> My latest test I added here the "FOREGROUND_SERVICE_TYPE_LOCATION"
        
        else
            startForeground("12345678", notification);
        

        return START_STICKY;

LocationTracker:(onCreate)

@Override
    public void onCreate() 
        //LogUtils.debug("LocationTracker service started");
        mContext = getApplicationContext();

       //Location listener
        final Handler handler = new Handler();
        handler.postDelayed(new Runnable() 
            public void run() 
                try
                    if(StaticVariables.LocationAllowed)
                    
                        if(StaticVariables.LocationTrackingActive)
                        
                            //Check if we found a point.
                            Location location = getLatestPoint();
                            writeLocationToServer(location);

                            startLocationTracking();
                        
                        else
                        
                            //LogUtils.debug("Location 1: Location tracking is not active");
                            stopLocationListener();
                        
                    
                    handler.postDelayed(this, HANDLER_DELAY);
                
                catch (Exception ex)
                
                    LogUtils.debug("Location failed to run: " + ex.getMessage());
                
            
        , 1000);

LocationTracker:(getLatestPoint)

private Location getLatestPoint()
    
        Location gpsPoint = null;
        Location networkPoint = null;

        LogUtils.debug("Getting latest point");

        if(gpsListener != null)
        
            gpsPoint = gpsListener.getLastLocation();
        
        if(networkListener != null)
        
            networkPoint = networkListener.getLastLocation();
        

        if(gpsPoint != null && networkPoint != null)
        
            if(gpsPoint.getAccuracy() < networkPoint.getAccuracy())
            
                return gpsPoint;
            
            else
            
                return networkPoint;
            
        
        else if(gpsPoint != null)
        
            return gpsPoint;
        
        else if(networkPoint != null)
        
            return networkPoint;
        
        else
        
            return null;
        
    

位置监听器:

public CustomerLocationListener(LocationManager locationManager, String provider) 
        this.locationManager = locationManager;
        this.provider = provider;


@Override
    public void onLocationChanged(Location location) 
        this.location = location;
        stopLocationListener();


@SuppressLint("MissingPermission") //=> Not an issue as this is checked before starting
    public void startLocationListener()
    
        if(StaticVariables.LocationAllowed)
        
            if(locationManager.isProviderEnabled(provider))
            
                locationManager.requestLocationUpdates(provider, GPS_TIME_INTERVAL, GPS_DISTANCE,this);
            
            else
            
                //LogUtils.debug("Provider: " + provider + " is not available");
            
        
    

public void stopLocationListener()

        if(locationManager != null)
        
            locationManager.removeUpdates(this); // remove this listener
        

build.gradle:

apply plugin: 'com.android.application'

android 
    compileSdkVersion 30
    buildToolsVersion '30.0.3'
    defaultConfig 
        applicationId "xxxx"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 28
        versionName "VERSIONNAME"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true //For zxing
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        
    
    apply plugin: 'com.android.application'
    compileOptions 
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    


...

间隔是:“1 次请求/20 秒”,但我已经将其更改为“1 次请求/分钟”

我希望有人可以帮助我找到解决方案,因为这是一个受欢迎的产品。 感谢您的宝贵时间。

【问题讨论】:

您有没有想出解决方案?我在使用融合位置时面临同样的问题。 90% 的运行一切正常,但剩余 10% 的 GPS 更新会在一段时间后(30-60 分钟)停止。再次获取更新的唯一解决方案是重新启动应用程序。代码几乎是从github.com/android/location-samples/blob/master/…1-1复制过来的。 嘿,是的,问题是如果设备在一段时间内(30 到 60 分钟)没有移动,gps 就会停止工作。移动设备后,gps 将重新激活。 (这是设备在外面的时候) 【参考方案1】:

如果你想让你的服务在 Android 10 及以上的设备上运行,那么你必须使用startForeground(id, notification) 否则,它会在一段时间后被系统杀死。

您必须让用户知道您的应用在后台持续运行,如新 API 更改中所述。因此,请尝试仅发送一个简单的通知并在某个时间间隔内仅发送当前位置,并检查它是否仍在运行或被杀死。

您还必须为您的应用关闭电池优化,否则会出现同样的问题。

您可以在 Google 上找到有关 startForeground 以及如何以编程方式忽略电池优化的更多信息。

所以请尝试一下。 :)

【讨论】:

以上是关于GPS跟踪的前台服务在一段时间后停止工作的主要内容,如果未能解决你的问题,请参考以下文章

Android - 前台在 Oreo 中不起作用。操作系统在一段时间后终止服务

一段时间后,前台服务被Android杀死

在我的颤振(android)应用程序中 - Firebase 推送通知在一段时间后停止接收每个用户

打盹模式停止了定位服务

定位服务 GPS,设置高优先级

ios12后台定位服务停止