-
Notifications
You must be signed in to change notification settings - Fork 297
/
build.gradle
44 lines (36 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
plugins {
id 'com.android.application' version '8.7.1' apply false
id 'com.android.library' version '8.7.1' apply false
}
tasks.register('clean', Delete) {
delete getBuildDir()
}
ext {
minSdkVersion = 16
compileSdkVersion = 35
targetSdkVersion = 35
buildToolsVersion = '35.0.0'
javaVersion = JavaVersion.VERSION_1_7
ndkVersion = "23.2.8568313"
cmakeVersion = "3.30.5"
abiFilters = "armeabi-v7a,arm64-v8a"
useASAN = false
dependencyOnLocalLibrary = true
shadowhookVersion = "1.1.1"
POM_GROUP_ID = "com.bytedance.android"
POM_ARTIFACT_ID = "shadowhook"
POM_VERSION_NAME = "1.1.1"
POM_NAME = "shadowhook"
POM_DESCRIPTION = "ShadowHook is an Android inline hook library which supports thumb, arm32 and arm64."
POM_URL = "https://github.com/bytedance/android-inline-hook"
POM_INCEPTION_YEAR = "2021"
POM_PACKAGING = "aar"
POM_SCM_CONNECTION = "https://github.com/bytedance/android-inline-hook.git"
POM_ISSUE_SYSTEM = "github"
POM_ISSUE_URL = "https://github.com/bytedance/android-inline-hook/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"
}