nostros/android/build.gradle

62 lines
2.0 KiB
Groovy
Raw Normal View History

2022-10-24 17:27:31 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-10-30 19:27:56 +00:00
buildToolsVersion = "31.0.0"
2022-10-24 17:27:31 +00:00
minSdkVersion = 21
2022-10-30 19:27:56 +00:00
compileSdkVersion = 31
2022-11-02 02:35:11 +00:00
targetSdkVersion = 29
2022-10-30 19:27:56 +00: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"
}
2022-10-24 17:27:31 +00:00
}
repositories {
google()
2022-10-30 16:43:26 +00:00
mavenCentral()
2022-10-24 17:27:31 +00:00
}
dependencies {
2022-10-30 19:27:56 +00:00
classpath("com.android.tools.build:gradle:7.2.1")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:5.0.1")
2022-10-24 17:27:31 +00:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
2022-10-30 23:30:48 +00:00
configurations.all {
resolutionStrategy {
eachDependency {
// https://issuetracker.google.com/issues/109894262#comment9
if (requested.group == "org.jetbrains.trove4j" && requested.name == "trove4j" && requested.version == "20160824") {
useTarget("org.jetbrains.intellij.deps:trove4j:1.0.20181211")
}
}
}
}
2022-10-24 17:27:31 +00:00
}
allprojects {
repositories {
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
}
maven {
// Android JSC is installed from npm
url("$rootDir/../node_modules/jsc-android/dist")
}
2022-10-30 19:27:56 +00:00
mavenCentral {
// We don't want to fetch react-native from Maven Central as there are
// older versions over there.
content {
excludeGroup "com.facebook.react"
}
}
2022-10-24 17:27:31 +00:00
google()
maven { url 'https://www.jitpack.io' }
}
}