-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.gradle
44 lines (36 loc) · 1.25 KB
/
build.gradle
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
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 16
compileSdkVersion = 33
targetSdkVersion = 33
buildToolsVersion = '33.0.2'
javaVersion = JavaVersion.VERSION_1_7
ndkVersion = "23.2.8568313"
cmakeVersion = "3.22.1"
abiFilters = "armeabi-v7a,arm64-v8a,x86,x86_64"
useASAN = false
dependencyOnLocalLibrary = true
xunwindVersion = "2.0.0"
POM_GROUP_ID = "io.github.hexhacking"
POM_ARTIFACT_ID = "xunwind"
POM_VERSION_NAME = "2.0.0"
POM_NAME = "xUnwind Android Lib"
POM_DESCRIPTION = "xUnwind is a collection of Android native stack unwinding solutions."
POM_URL = "https://github.com/hexhacking/xUnwind"
POM_INCEPTION_YEAR = "2020"
POM_PACKAGING = "aar"
POM_SCM_CONNECTION = "https://github.com/hexhacking/xUnwind.git"
POM_ISSUE_SYSTEM = "github"
POM_ISSUE_URL = "https://github.com/hexhacking/xUnwind/issues"
POM_LICENCE_NAME = "The MIT License"
POM_LICENCE_URL = "https://opensource.org/licenses/MIT"
POM_LICENCE_DIST = "repo"
POM_DEVELOPER_ID = "HexHacking"
POM_DEVELOPER_NAME = "HexHacking Team"
}