feat: modified Fabric example android build.gradle for resolving build issue (#3976)

This commit is contained in:
yungblud 2024-07-06 17:19:24 +09:00 committed by GitHub
parent 01a00b12ae
commit 1d6fb29753
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,21 +3,23 @@
buildscript {
ext {
buildToolsVersion = "34.0.0"
minSdkVersion = 21
minSdkVersion = 23
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "25.1.8937393"
kotlinVersion = "1.8.0"
ndkVersion = "26.1.10909125"
kotlinVersion = "1.9.22"
useExoplayerIMA = System.getenv("RNV_SAMPLE_ENABLE_ADS") ?: true
useExoplayerRtsp = true
}
repositories {
google()
mavenCentral()
}
dependencies {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:5.0.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}