Fix "Failed to resolve" errors in Android Studio 3.3

This commit is contained in:
aMarCruz 2018-07-19 18:56:43 -05:00
parent ce513f20e9
commit 50e5a137b4
1 changed files with 9 additions and 0 deletions

View File

@ -76,6 +76,15 @@ rootProject.gradle.buildFinished { buildResult ->
}
}
repositories {
google()
jcenter()
maven {
url "$rootDir/../node_modules/react-native/android"
name 'React Native (local)'
}
}
def supportVersion = rootProject.hasProperty('supportLibVersion') ? rootProject.supportLibVersion : DEFAULT_SUPPORT_LIB_VERSION
dependencies {