From b8848eb39b6c8de8646ecc3bb7437c4e1f44ee13 Mon Sep 17 00:00:00 2001 From: Andrew Shkrob Date: Sat, 11 Jan 2025 11:50:13 +0100 Subject: [PATCH] [android-auto] Make AA background service Signed-off-by: Andrew Shkrob --- android/app/src/main/AndroidManifest.xml | 8 +++--- .../app/organicmaps/car/CarAppService.java | 26 +------------------ .../src/main/res/values/donottranslate.xml | 2 -- 3 files changed, 6 insertions(+), 30 deletions(-) diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index ba2f5c7606..5da87e17ed 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -454,14 +454,16 @@ - + + + + + = Build.VERSION_CODES.N) - stopForeground(STOP_FOREGROUND_REMOVE); - else - stopForeground(true); - } - }); - return carAppSession; + return new CarAppSession(sessionInfo); } @NonNull @@ -104,13 +89,4 @@ public final class CarAppService extends androidx.car.app.CarAppService .build(); notificationManager.createNotificationChannel(notificationChannel); } - - @NonNull - private Notification getNotification() - { - return NavigationService.getNotificationBuilder(this) - .setChannelId(ANDROID_AUTO_NOTIFICATION_CHANNEL_ID) - .setContentTitle(getString(R.string.aa_connected_to_car_notification_title)) - .build(); - } } diff --git a/android/app/src/main/res/values/donottranslate.xml b/android/app/src/main/res/values/donottranslate.xml index 19325940b1..976c1ecd7c 100644 --- a/android/app/src/main/res/values/donottranslate.xml +++ b/android/app/src/main/res/values/donottranslate.xml @@ -68,6 +68,4 @@ com.google.android.material.bottomsheet.BottomSheetBehavior Car - - Since Android 14, every Foreground Service must have a type. There is no specific service type for Android Auto.