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:
commit
bbe92bc313
|
@ -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
|
def supportVersion = rootProject.hasProperty('supportLibVersion') ? rootProject.supportLibVersion : DEFAULT_SUPPORT_LIB_VERSION
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
Loading…
Reference in New Issue