forked from MobileGL-Dev/MobileGlues
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
38 lines (32 loc) · 742 Bytes
/
Copy pathbuild.gradle.kts
File metadata and controls
38 lines (32 loc) · 742 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
31
32
33
34
35
36
37
38
plugins {
id("com.android.library")
}
android {
namespace = "top.mobilegl.mobileglues"
compileSdk = 36
defaultConfig {
minSdk = 21
ndkVersion = "27.3.13750724"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
}
create("proguard") {
isMinifyEnabled = true
initWith(getByName("debug"))
}
create("fordebug") {
}
}
externalNativeBuild {
cmake {
path = file("MobileGlues-cpp/CMakeLists.txt")
version = "3.22.1"
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}