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.