-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathbuild.gradle
54 lines (49 loc) · 1.44 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
apply plugin: 'com.android.application'
// Load keystore
def keystorePropertiesFile = rootProject.file("keystore.properties");
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "a2dp.Vol"
minSdkVersion 23
targetSdkVersion 28
signingConfig signingConfigs.release
}
buildTypes {
debug {
}
release {
signingConfig signingConfigs.release
zipAlignEnabled true
minifyEnabled false
}
}
sourceSets {
main {
manifest.srcFile 'src/main/AndroidManifest.xml'
}
}
productFlavors {
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation 'com.android.support:support-v4:28.0.0'
//compile 'com.google.android.gms:play-services-appindexing:9.8.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
}