From 9a4df389cb5f88ab49e8b36e089fd734aaae4dfc Mon Sep 17 00:00:00 2001 From: Thai Duong <thaidn@google.com> Date: Fri, 8 Jun 2018 16:01:07 -0700 Subject: [PATCH] Fixing Gradle build of the hello world example. See https://github.com/facebook/react-native/issues/19485#issuecomment-395882343 and https://stackoverflow.com/questions/50563338/could-not-find-runtime-jar-android-arch-lifecycleruntime1-0-0/50565155#50565155 PiperOrigin-RevId: 199865197 GitOrigin-RevId: fb3a6d90ed7293cd62b2ccd1bafb76845847c0f0 --- examples/helloworld/android/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/helloworld/android/build.gradle b/examples/helloworld/android/build.gradle index c2eea8e27..780a48f6e 100644 --- a/examples/helloworld/android/build.gradle +++ b/examples/helloworld/android/build.gradle @@ -14,6 +14,7 @@ buildscript { allprojects { repositories { + maven { url 'https://maven.google.com' } jcenter() } } -- GitLab