-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
53 lines (45 loc) · 1.04 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
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
}
}
apply plugin: 'com.android.library'
allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
}
ext {
PUBLISH_GROUP_ID = 'com.buglife.sdk'
PUBLISH_ARTIFACT_ID = 'crashlife-android'
PUBLISH_VERSION_CODE = 12
PUBLISH_VERSION_NAME = '1.0.5'
SUPPORT_VERSION = '28.0.0'
}
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
versionCode PUBLISH_VERSION_CODE
versionName PUBLISH_VERSION_NAME
vectorDrawables.useSupportLibrary = true
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation 'ru.ivanarh.ndcrash:jndcrash-libunwind:0.7'
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:2.8.0'
testImplementation 'org.json:json:20171018'
}