After adding lottie to build.gradle file saying Error:Failed to resolve: com.android.support:appcompat-v7:26.1.0 Install Repository and sync project Open File Show in Project Structure dialog
Asked
Active
Viewed 383 times
1 Answers
0
Make sure you're including maven repo in your root build.gradle
e.g.
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

John O'Reilly
- 10,000
- 4
- 41
- 63