-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (36 loc) · 1.29 KB
/
Copy pathbuild.gradle
File metadata and controls
44 lines (36 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
id 'com.android.application' version '9.1.0' apply false
id 'com.google.gms.google-services' version '4.4.4' apply false
id 'com.google.firebase.crashlytics' version '3.0.6' apply false
}
subprojects {
afterEvaluate {
if (plugins.hasPlugin("com.android.library") || plugins.hasPlugin("com.android.application")) {
android {
compileSdk = 36
buildToolsVersion = "36.0.0"
ndkVersion = "27.2.12479018"
lint {
checkReleaseBuilds = false
disable 'MissingTranslation', 'ExtraTranslation', 'BlockedPrivateApi'
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
coreLibraryDesugaringEnabled = true
}
kotlin {
compilerOptions {
jvmTarget = JvmTarget.JVM_21
}
}
defaultConfig {
minSdk = 27
targetSdk = 36
}
buildFeatures.buildConfig = true
}
}
}
}