-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbuild.gradle
66 lines (62 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
apply plugin: 'com.android.application'
android {
namespace 'io.github.hexhacking.xunwind.sample'
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
ndkVersion rootProject.ext.ndkVersion
defaultConfig {
applicationId "io.github.hexhacking.xunwind.sample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
ndk {
abiFilters rootProject.ext.abiFilters.split(",")
}
externalNativeBuild {
cmake {
abiFilters rootProject.ext.abiFilters.split(",")
}
}
}
externalNativeBuild {
cmake {
path "src/main/cpp/CMakeLists.txt"
version rootProject.ext.cmakeVersion
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled false
}
}
packagingOptions {
jniLibs {
pickFirsts += ['**/libxunwind.so']
}
if (rootProject.ext.useASAN) {
doNotStrip "**/*.so"
}
}
buildFeatures {
prefab true
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
if (rootProject.ext.dependencyOnLocalLibrary) {
implementation project(':xunwind')
} else {
implementation 'io.github.hexhacking:xunwind:' + rootProject.ext.xunwindVersion
}
}
apply from: rootProject.file('gradle/sanitizer.gradle')