-
Notifications
You must be signed in to change notification settings - Fork 27
/
build.gradle
56 lines (47 loc) · 1.29 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
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
}
apply plugin: 'com.android.library'
allprojects {
repositories {
mavenCentral()
google()
}
}
ext {
PUBLISH_GROUP_ID = 'com.buglife.sdk'
PUBLISH_ARTIFACT_ID = 'buglife-android'
PUBLISH_VERSION_CODE = 56
PUBLISH_VERSION_NAME = '1.5.3'
SUPPORT_VERSION = '28.0.0'
}
apply from: "${rootProject.projectDir}/scripts/publish-mavencentral.gradle"
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode PUBLISH_VERSION_CODE
versionName PUBLISH_VERSION_NAME
vectorDrawables.useSupportLibrary = true
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation "com.android.support:appcompat-v7:$SUPPORT_VERSION"
implementation "com.android.support:design:$SUPPORT_VERSION"
implementation "com.android.support:support-dynamic-animation:$SUPPORT_VERSION"
implementation "com.squareup.okhttp3:okhttp:3.12.1"
testImplementation 'junit:junit:4.12'
testImplementation 'org.assertj:assertj-core:2.8.0'
testImplementation 'org.json:json:20171018'
}