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