Merge pull request #1324 from aMarCruz/fix-studio-unresolved-errors

Fix "Failed to resolve" errors in Android Studio 3.3
This commit is contained in:
Michael Diarmid 2018-07-20 11:20:18 +01:00 committed by GitHub
commit bbe92bc313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {