mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
* upgrade RN to 0.67-rc.6 upgrade react-native-reanimated to 2.3.1 debug and release building/working * update to RN stable 0.67 * yarn upgrade also use xmldom builtin types * ignore ndk dir for linting * upgrade types (RN 0.67 not out yet) * remove deprecated rule * actually i like that one, keep for now * update licenses * upgrade RN types and use builtin dep * upgrade RN 0.67.1
70 lines
2.2 KiB
Groovy
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 = 30
|
|
targetSdkVersion = 30
|
|
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")
|
|
}
|
|
}
|
|
}
|
|
}
|