0

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

Motley Uz
  • 3
  • 1

1 Answers1

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