-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
40 lines (38 loc) · 1.05 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
apply plugin: 'com.android.application'
apply plugin: 'com.github.triplet.play'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.mridang.address"
minSdkVersion 14
targetSdkVersion 21
}
signingConfigs {
release {
storeFile file(KEYSTORE)
storePassword KEYSTORE_PASSWORD
keyAlias KEY_ALIAS
keyPassword KEY_PASSWORD
}
}
buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors {
}
play {
serviceAccountEmail = '1043108920729-dtq0jc7j2toc4af8m3qq4mfub9ddtg13@developer.gserviceaccount.com'
pk12File = file('../key.p12')
track = 'production'
}
}
dependencies {
compile files('libs/acra-4.5.0.jar')
compile files('libs/dashclock-api-r2.0.jar')
compile files('libs/jsoup-1.7.1.jar')
}