Skip to content

Commit

Permalink
Fixed unresolved dependency by JCenter
Browse files Browse the repository at this point in the history
Problem:
* What went wrong:
A problem occurred configuring root project 'TapTargetView'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not find aapt2-proto.jar (com.android.tools.build:aapt2-proto:0.3.1).
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/tools/build/aapt2-proto/0.3.1/aapt2-proto-0.3.1.jar

Changing google to the first source for dependencies resolves this issue
  • Loading branch information
philippb committed Sep 3, 2019
1 parent 84afbb8 commit 889c7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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.2.0'
Expand Down

0 comments on commit 889c7c8

Please sign in to comment.