38 lines
1002 B
Groovy
Raw Normal View History

2015-12-06 22:25:18 -08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-06-19 14:37:21 +07:00
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 31
2022-04-23 22:15:11 +02:00
targetSdkVersion = 29
}
2015-12-06 22:25:18 -08:00
repositories {
2019-06-19 14:37:21 +07:00
google()
jcenter()
2015-12-06 22:25:18 -08:00
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
2015-12-06 22:25:18 -08:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
2016-09-20 04:46:15 +04:00
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
2016-09-20 04:46:15 +04:00
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
jcenter()
maven { url 'https://www.jitpack.io' }
2015-12-06 22:25:18 -08:00
}
}