-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
30 lines (27 loc) · 794 Bytes
/
build.gradle.kts
File metadata and controls
30 lines (27 loc) · 794 Bytes
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
ext.apply {
set("compileSdk", 35)
set("targetSdk", 35)
set("minSdk", 26)
set("ndkVersion", "27.0.12077973")
set("cmakeVersion", "3.22.1")
set("ktx_version", "1.12.0")
set("stdlib_version", "1.8.22")
set("hiddenapibypass", "4.3")
set("xcrashversion", "3.0.0")
set("shadowhook", "1.0.8")
set("googlematerial", "1.11.0")
}
buildscript {
dependencies {
classpath(libs.gradle)
}
}
plugins {
id("com.android.application") version "8.3.2" apply false
id("org.jetbrains.kotlin.android") version "2.0.0" apply false
id("com.android.library") version "8.3.2" apply false
id("dev.rikka.tools.materialthemebuilder") version "1.4.1" apply false
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}