gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 23:50:40 25 4
gpt4 key购买 nike

背景:
我们有一个应用程序可以为一群人进行时间登记。在此示例中,我们使用 Zebra TC26(型号:TC26BK-11A222-A6)并通过扫描为多人打卡。
接下来,该应用程序会跟踪手机的 GPS 位置,以定位在哪个领域执行 Activity 。然后,农民可以更准确地计算每 block 土地的成本。
这一直工作到 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% 的情况下,设备不发送数据。
  • 我不使用 fuse 位置提供程序,因为并非所有设备都具有 GMS 服务。
  • 答案可能是我需要重写一些东西。对我来说这不是问题,因为我的最终目标是拥有一个可以工作的产品。如果是这种情况,请向我提供详细的计划以及放置内容的位置或提供教程的链接。

  • list : (我遗漏了一些权限和 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>

    主要 Activity (注意,启动 Activity 是入口点,但后来添加,所以这仍然称为主要 Activity )
    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 个请求/分钟”
    我希望有人可以帮助我找到解决方案,因为这是一个受欢迎的产品。
    感谢您的时间。

    最佳答案

    如果您想让您的服务在 Android 10 及更高版本的设备上运行,那么您必须使用 startForeground(id, notification)否则,它会在一段时间后被系统杀死。
    正如新 API 更改中提到的那样,您必须让用户知道您的应用程序一直在后台运行。因此,请尝试仅发送一个简单的通知并在某个时间间隔内仅发送当前位置,并检查它是否仍在运行或被杀死。
    您还必须关闭应用程序的电池优化,否则会出现同样的问题。
    您可以找到有关 startForeground 的更多信息以及如何在 Google 上以编程方式忽略电池优化。
    所以试试吧。 :)

    关于android - GPS跟踪的前台服务在一段时间后停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67468022/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com