subtracks/android/build.gradle
austinried cba32e75b3 downgrade async-storage a bit
some kind of java/jetifier issue in 1.17 that i don't want to deal with
2022-04-11 13:53:11 +09:00

70 lines
2.2 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
ndkVersion = "21.4.7075529"
// react-native-async-storage next
kotlinVersion = '1.4.21'
}
repositories {
google()
mavenCentral()
// jcenter()
maven {
url 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// react-native-async-storage next
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "gradle.plugin.com.cookpad.android.plugin:plugin:1.2.8"
}
}
apply plugin: "com.cookpad.android.plugin.license-tools"
licenseTools {
outputHtml = "../../../app/src/main/assets/licenses.html"
}
allprojects {
repositories {
mavenLocal()
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")
}
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()
maven { url 'https://www.jitpack.io' }
// remove jcenter once the following workarounds are no longer needed
jcenter() {
content {
// used by react-native-track-player, can remove once they use a newer exoplayer
includeGroup("com.linkedin.dexmaker")
// used by exoplayer
includeGroup("com.linkedin.dexmaker-mockito")
includeGroup("com.google.android.exoplayer")
}
}
}
}