Skip to content

Commit

Permalink
fix(android): put google() on top of jcenter() in gradle files (#2461)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Feb 21, 2020
1 parent 10acf5c commit 3263dbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/capacitor/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
Expand Down
2 changes: 1 addition & 1 deletion capacitor-cordova-android-plugins/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
Expand Down
2 changes: 1 addition & 1 deletion plugin-template/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
repositories {
jcenter()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
Expand Down

0 comments on commit 3263dbc

Please sign in to comment.