forked from bytedance/bhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (46 loc) · 1.28 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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 16
compileSdkVersion = 31
targetSdkVersion = 31
buildToolsVersion = "31.0.0"
javaVersion = JavaVersion.VERSION_1_7
ndkVersion = "23.1.7779620"
cmakeVersion = "3.18.1"
abiFilters = "armeabi-v7a,arm64-v8a,x86,x86_64"
useASAN = false
dependencyOnLocalLibrary = true
POM_GROUP_ID = "com.bytedance"
POM_ARTIFACT_ID = "bytehook"
POM_VERSION_NAME = "1.0.4"
POM_NAME = "bytehook"
POM_DESCRIPTION = "ByteHook is a PLT hook framework for Android app."
POM_URL = "https://github.com/bytedance/bhook"
POM_INCEPTION_YEAR = "2020"
POM_PACKAGING = "aar"
POM_SCM_CONNECTION = "https://github.com/bytedance/bhook.git"
POM_ISSUE_SYSTEM = "github"
POM_ISSUE_URL = "https://github.com/bytedance/bhook/issues"
POM_LICENCE_NAME = "The MIT License"
POM_LICENCE_URL = "https://opensource.org/licenses/MIT"
POM_LICENCE_DIST = "repo"
POM_DEVELOPER_ID = "bytedance"
POM_DEVELOPER_NAME = "bytedance"
}