forked from gumingwei/WellSwipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (31 loc) · 866 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.well.swipe"
minSdkVersion 14
targetSdkVersion 23
versionCode 11
versionName "1.1.3"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
// [START gms_compile]
compile 'com.google.android.gms:play-services-analytics:8.4.0'
// [END gms_compile]
compile project(':common')
}
apply plugin: 'com.google.gms.google-services'