forked from bytedance/bhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
72 lines (68 loc) · 1.94 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
67
68
69
70
71
72
plugins {
id 'com.android.application'
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
ndkVersion rootProject.ext.ndkVersion
defaultConfig {
applicationId "com.bytedance.android.bytehook.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(",")
if (rootProject.ext.dependencyOnLocalLibrary) {
arguments "-DDEPENDENCY_ON_LOCAL_LIBRARY=ON"
}
}
}
}
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 true
}
}
if (!rootProject.ext.dependencyOnLocalLibrary) {
buildFeatures {
prefab true
}
}
packagingOptions {
pickFirst '**/libbytehook.so'
}
if (rootProject.ext.useASAN) {
packagingOptions {
doNotStrip "**/*.so"
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
if (rootProject.ext.dependencyOnLocalLibrary) {
implementation project(':bytehook')
} else {
implementation 'com.bytedance:bytehook:1.0.4'
}
}
apply from: rootProject.file('gradle/sanitizer.gradle')