Skip to content

Commit

Permalink
Could not resolve all files for configuration fix
Browse files Browse the repository at this point in the history
* jcenter can't find gradle so I added maven to the repositories section
* gradle:2.3 does not seem to be available, but 3.1.4 works
  • Loading branch information
asimrell committed Dec 10, 2018
1 parent 6753792 commit 43e304f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
buildscript {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:2.3.+'
classpath 'com.android.tools.build:gradle:3.1.4'
}
}

Expand Down

1 comment on commit 43e304f

@arsimr16
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here is my fix for mockingbot#15

Please sign in to comment.