-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
38 lines (33 loc) · 805 Bytes
/
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
buildscript {
if (!project.hasProperty('version') || project.version.equals('unspecified')) {
project.version = '+'
}
repositories {
google()
mavenLocal()
jcenter()
}
dependencies {
classpath 'com.mparticle:android-kit-plugin:' + project.version
}
}
repositories {
mavenLocal()
mavenCentral()
maven {
url "https://maven.google.com"
}
}
apply plugin: 'com.mparticle.kit'
android {
defaultConfig {
minSdkVersion 16
}
}
dependencies {
api 'com.urbanairship.android:urbanairship-core:13.2.1'
compileOnly 'com.android.support:appcompat-v7:+'
testImplementation 'junit:junit:4.13'
testImplementation files('libs/java-json.jar')
testImplementation "org.mockito:mockito-core:3.3.3"
}