Skip to content

Commit 30bfd48

Browse files
committed
feat: upgrade Navigation SDK for Android to 7.5.0
1 parent 2aaff3b commit 30bfd48

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ dependencies {
5858
implementation "androidx.car.app:app:1.4.0"
5959
implementation "androidx.car.app:app-projected:1.4.0"
6060
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
61-
implementation "com.google.android.libraries.navigation:navigation:7.4.0"
61+
implementation "com.google.android.libraries.navigation:navigation:7.5.0"
6262
api 'com.google.guava:guava:31.0.1-android'
6363
}

example/android/app/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ android {
131131
}
132132
}
133133
compileOptions {
134+
coreLibraryDesugaringEnabled true
134135
sourceCompatibility JavaVersion.VERSION_17
135136
targetCompatibility JavaVersion.VERSION_17
136137
}
@@ -153,7 +154,10 @@ dependencies {
153154
implementation "androidx.car.app:app-projected:1.4.0"
154155

155156
// Include the Google Navigation SDK.
156-
implementation 'com.google.android.libraries.navigation:navigation:7.4.0'
157+
implementation 'com.google.android.libraries.navigation:navigation:7.5.0'
158+
159+
// Android API desugaring support.
160+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.4'
157161
}
158162

159163
secrets {

0 commit comments

Comments
 (0)