-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
64 lines (59 loc) · 1.51 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
57
58
59
60
61
62
63
64
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
apply plugin: 'com.android.application'
repositories {
jcenter()
}
dependencies {
compile 'com.google.guava:guava:18.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services-maps:8.4.0'
compile project(':bostonbusmap-library')
compile 'com.android.support:support-v4:23.4.0'
compile 'com.google.code.findbugs:jsr305:1.3.9'
}
android {
compileSdkVersion "Google Inc.:Google APIs:23"
buildToolsVersion '26.0.2'
buildTypes {
release {
minifyEnabled true
proguardFile 'proguard-project.txt'
debuggable false
}
}
sourceSets {
main {
manifest.srcFile './AndroidManifest.xml'
java {
srcDir 'src'
}
res {
srcDir 'res'
}
}
}
signingConfigs {
release {
release {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias BOSTON_KEY_ALIAS
keyPassword BOSTON_KEY_PASSWORD
}
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}