Skip to content

Commit

Permalink
added jcenter as a fallback to fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-ht committed Jan 17, 2022
1 parent 1967050 commit 277d431
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}

Expand All @@ -19,6 +20,7 @@ rootProject.allprojects {
}
repositories {
google()
jcenter()
mavenCentral()
maven {
url 'https://api.mapbox.com/downloads/v2/releases/maven'
Expand Down
8 changes: 8 additions & 0 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,12 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
constraints {
implementation('com.google.android.gms:play-services-location') {
version {
strictly "16.0.0"
}
because 'location: 4.2.3 does not specify version play-services-location'
}
}
}

0 comments on commit 277d431

Please sign in to comment.