From 45fe297616a48e408595152ea60c6457a42ddcdf Mon Sep 17 00:00:00 2001 From: johan12345 Date: Wed, 7 May 2025 22:35:02 +0200 Subject: [PATCH] Update car app library fixes #375 for permission request https://developer.android.com/training/cars/apps#permissions Warning: You must update to androidx.car.app:1.7.0-alpha01 or later for the permissions dialog to show up on the phone screen when your app is used on a device running Android 14 or higher. --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index a37adaad..b2077bf8 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -315,7 +315,7 @@ dependencies { implementation("com.github.erfansn:locale-config-x:1.0.1") // Android Auto - val carAppVersion = "1.4.0" + val carAppVersion = "1.7.0-rc01" implementation("androidx.car.app:app:$carAppVersion") normalImplementation("androidx.car.app:app-projected:$carAppVersion") automotiveImplementation("androidx.car.app:app-automotive:$carAppVersion")