-
Notifications
You must be signed in to change notification settings - Fork 82
/
core_release.gradle
43 lines (36 loc) · 1.08 KB
/
core_release.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
android {
compileSdkVersion rootProject.compileSdkVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
applicationId rootProject.applicationId
versionCode rootProject.versionCode
versionName rootProject.versionName
multiDexEnabled true
}
signingConfigs {
config {
keyAlias rootProject.keyAlias
keyPassword rootProject.keyPassword
storeFile file('keystore/awaker.jks')
storePassword rootProject.storePassword
}
}
buildTypes {
debug {}
release {
minifyEnabled true
shrinkResources true
zipAlignEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
androidExtensions {
experimental = true
}
}