-
Notifications
You must be signed in to change notification settings - Fork 335
/
build.gradle
73 lines (69 loc) · 2.06 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
73
plugins {
id 'com.android.application'
}
android {
namespace 'com.bytedance.android.bytehook.sample'
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
}
}
packagingOptions {
jniLibs {
pickFirsts += ['**/libbytehook.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.10.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
if (rootProject.ext.dependencyOnLocalLibrary) {
implementation project(':bytehook')
} else {
implementation 'com.bytedance:bytehook:' + rootProject.ext.POM_VERSION_NAME
}
implementation project(':bytehook_systest')
}
apply from: rootProject.file('gradle/prefab_bypass.gradle')
apply from: rootProject.file('gradle/sanitizer.gradle')