Skip to content

Commit d469e1e

Browse files
committed
feat: upgrade Android Nav SDK to 7.6.0
1 parent 54c25c6 commit d469e1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ const {
628628
| `setDestinations(destinations: Waypoint[], routingOptions?, displayOptions?)` | `Promise<RouteStatus>` | Set navigation destinations |
629629
| `setDestination(waypoint: Waypoint, routingOptions?, displayOptions?)` | `Promise<RouteStatus>` | Set a single navigation destination |
630630
| `clearDestinations()` | `Promise<void>` | Clear all destinations |
631-
| `continueToNextDestination()` | `Promise<void>` | Navigate to the next destination in the list |
631+
| `continueToNextDestination()` | `Promise<ContinueToNextDestinationResponse>` | Navigate to the next destination in the list |
632632
| `startGuidance()` | `Promise<void>` | Start turn-by-turn navigation guidance |
633633
| `stopGuidance()` | `Promise<void>` | Stop navigation guidance |
634634
| `getCurrentTimeAndDistance()` | `Promise<TimeAndDistance \| null>` | Get time and distance to current destination |

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.5.0"
61+
implementation "com.google.android.libraries.navigation:navigation:7.6.0"
6262
api 'com.google.guava:guava:31.0.1-android'
6363
}

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ dependencies {
153153
implementation "androidx.car.app:app-projected:1.4.0"
154154

155155
// Include the Google Navigation SDK.
156-
implementation 'com.google.android.libraries.navigation:navigation:7.5.0'
156+
implementation 'com.google.android.libraries.navigation:navigation:7.6.0'
157157
}
158158

159159
secrets {

0 commit comments

Comments
 (0)