tooot/android/build.gradle

52 lines
1.6 KiB
Groovy
Raw Normal View History

2021-01-28 00:41:53 +01:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-05-08 22:35:43 +02:00
buildToolsVersion = "31.0.0"
2021-01-28 00:41:53 +01:00
minSdkVersion = 21
2022-05-08 22:35:43 +02:00
compileSdkVersion = 31
targetSdkVersion = 31
2022-11-14 17:54:11 +01:00
kotlinVersion = '1.6.10'
2022-11-14 14:52:23 +01:00
2022-05-08 22:35:43 +02:00
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
} else {
// Otherwise we default to the side-by-side NDK version from AGP.
ndkVersion = "21.4.7075529"
}
2021-01-28 00:41:53 +01:00
}
repositories {
google()
2021-10-24 00:43:00 +02:00
mavenCentral()
2022-11-05 22:33:16 +01:00
jcenter()
2021-01-28 00:41:53 +01:00
}
dependencies {
2022-11-05 22:33:16 +01:00
classpath("com.android.tools.build:gradle:7.2.1")
2022-05-08 22:35:43 +02:00
classpath("com.facebook.react:react-native-gradle-plugin")
2022-08-08 22:32:51 +02:00
classpath("de.undercouch:gradle-download-task:5.0.1")
2021-01-28 00:41:53 +01:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
2021-10-24 00:43:00 +02:00
url(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute().text.trim(), "../android"))
2021-01-28 00:41:53 +01:00
}
maven {
// Android JSC is installed from npm
2021-10-24 00:43:00 +02:00
url(new File(["node", "--print", "require.resolve('jsc-android/package.json')"].execute().text.trim(), "../dist"))
2021-01-28 00:41:53 +01:00
}
google()
2021-10-24 00:43:00 +02:00
mavenCentral()
2022-11-05 22:33:16 +01:00
jcenter()
2021-01-28 00:41:53 +01:00
maven { url 'https://www.jitpack.io' }
}
}