Could not find runtime.jar (android.arch.lifecycle:runtime:1.0.0)

A quick temporary fix is to include the google maven repo in your top level gradle file.

allprojects {
  repositories {
      mavenLocal()
      maven { url 'https://maven.google.com' } // <-- add this!
      jcenter()

Leave a Comment