Fix maven

This commit is contained in:
DenSakh 2022-07-22 16:56:02 +03:00
parent 7182be1cc8
commit 5d0e0e50d6

View File

@ -38,7 +38,6 @@ buildscript {
if (project == rootProject) {
repositories {
google()
mavenCentral()
jcenter()
mavenCentral()
}
@ -66,18 +65,22 @@ android {
}
repositories {
// ref: https://www.baeldung.com/maven-local-repository
mavenCentral()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
url("$rootDir/../node_modules/react-native/android")
}
google()
jcenter()
maven {
// Android JSC is installed from npm
url "$rootDir/../node_modules/jsc-android/dist"
url("$rootDir/../node_modules/jsc-android/dist")
}
mavenCentral {
// We don't want to fetch react-native from Maven Central as there are
// older versions over there.
content {
excludeGroup "com.facebook.react"
}
}
google()
}
dependencies {