32 lines
895 B
Groovy
32 lines
895 B
Groovy
buildscript {
|
|
def androidTestAppDir = "../node_modules/react-native-test-app/android"
|
|
apply(from: "${androidTestAppDir}/dependencies.gradle")
|
|
apply(from: "${androidTestAppDir}/test-app-util.gradle")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:${androidPluginVersion}")
|
|
|
|
if (isNewArchitectureEnabled(project)) {
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("de.undercouch:gradle-download-task:5.1.0")
|
|
}
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven {
|
|
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
|
|
url("${rootDir}/../node_modules/react-native/android")
|
|
}
|
|
mavenCentral()
|
|
google()
|
|
maven { url 'https://www.jitpack.io' }
|
|
}
|
|
}
|