This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathbuild.gradle
61 lines (51 loc) · 1.58 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
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'digital.wup:android-maven-publish:3.6.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 16
compileSdkVersion = 30
targetSdkVersion = 30
buildToolsVersion = '30.0.2'
javaVersion = JavaVersion.VERSION_1_6
ndkVersion = "21.3.6528147"
cmakeVersion = "3.10.2"
abiFilters = "armeabi-v7a,arm64-v8a,x86,x86_64"
//abiFilters = "armeabi-v7a"
useASAN = false
POM_GROUP_ID = "io.hexhacking.xcrash"
POM_ARTIFACT_ID = "xcrash-android-lib"
POM_VERSION_NAME = "3.0.0"
POM_NAME = "xCrash Android Lib"
POM_DESCRIPTION = "xCrash provides the Android app with the ability to capture java crash, native crash and ANR."
POM_URL = "https://github.com/hexhacking/xCrash"
POM_INCEPTION_YEAR = "2019"
POM_PACKAGING = "aar"
POM_SCM_CONNECTION = "https://github.com/hexhacking/xCrash.git"
POM_ISSUE_SYSTEM = "github"
POM_ISSUE_URL = "https://github.com/hexhacking/xCrash/issues"
POM_LICENCE_NAME = "The MIT License"
POM_LICENCE_URL = "https://opensource.org/licenses/MIT"
POM_LICENCE_DIST = "repo"
POM_DEVELOPER_ID = "HexHacking"
POM_DEVELOPER_NAME = "HexHacking Team"
BINTRAY_REPO = "maven"
BINTRAY_ORGANIZATION = "hexhacking"
BINTRAY_LICENCE = ['MIT']
}