Skip to content

Commit 4d61130

Browse files
Bump NN to 143.0.0
1 parent ea8a932 commit 4d61130

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ allprojects {
6464
// we allow access to snapshots repo if ALLOW_SNAPSHOT_REPOSITORY is set, what means we are running on CI
6565
// with Navigation Native forced to be some snapshot version
6666
// if you need to use snapshots while development, just set `addSnapshotsRepo` to true manually
67-
def addSnapshotsRepo = true//project.hasProperty('ALLOW_SNAPSHOT_REPOSITORY') ? project.property('ALLOW_SNAPSHOT_REPOSITORY') : (System.getenv("ALLOW_SNAPSHOT_REPOSITORY")?.toBoolean() ?: false)
67+
def addSnapshotsRepo = project.hasProperty('ALLOW_SNAPSHOT_REPOSITORY') ? project.property('ALLOW_SNAPSHOT_REPOSITORY') : (System.getenv("ALLOW_SNAPSHOT_REPOSITORY")?.toBoolean() ?: false)
6868
if (addSnapshotsRepo) {
6969
println("Snapshot repository reference added.")
7070
maven {

gradle/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
// version which we should use in this build
1414
def mapboxNavigatorVersion = System.getenv("FORCE_MAPBOX_NAVIGATION_NATIVE_VERSION")
1515
if (mapboxNavigatorVersion == null || mapboxNavigatorVersion == '') {
16-
mapboxNavigatorVersion = 'av-NN-843-fix-1-SNAPSHOT'
16+
mapboxNavigatorVersion = '143.0.0'
1717
}
1818
println("Navigation Native version: " + mapboxNavigatorVersion)
1919

0 commit comments

Comments
 (0)