|
0
|
1 |
apply plugin: 'com.android.application'
|
|
|
2 |
|
|
|
3 |
android {
|
|
|
4 |
signingConfigs {
|
|
|
5 |
hh {
|
|
|
6 |
keyAlias 'androiddebugkey'
|
|
|
7 |
keyPassword 'android'
|
|
|
8 |
storeFile file('/home/hh/.android/debug.keystore')
|
|
|
9 |
storePassword 'android'
|
|
|
10 |
}
|
|
|
11 |
}
|
|
|
12 |
|
|
|
13 |
compileSdkVersion 28
|
|
|
14 |
|
|
|
15 |
defaultConfig {
|
|
|
16 |
applicationId 'hh.michelson'
|
|
|
17 |
minSdkVersion 22
|
|
|
18 |
targetSdkVersion 26
|
|
|
19 |
versionCode 1
|
|
|
20 |
versionName "1.0"
|
|
|
21 |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
22 |
signingConfig signingConfigs.hh
|
|
|
23 |
}
|
|
|
24 |
buildTypes {
|
|
|
25 |
release {
|
|
|
26 |
signingConfig signingConfigs.hh
|
|
|
27 |
}
|
|
|
28 |
debug {
|
|
|
29 |
debuggable false
|
|
|
30 |
}
|
|
|
31 |
}
|
|
|
32 |
productFlavors {
|
|
|
33 |
}
|
|
|
34 |
}
|
|
|
35 |
|
|
|
36 |
dependencies {
|
|
|
37 |
implementation project(':lib031-release')
|
|
|
38 |
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
39 |
implementation 'com.android.support:support-v4:28.0.0'
|
|
|
40 |
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
41 |
implementation 'com.android.support:preference-v7:28.0.0'
|
|
|
42 |
implementation 'com.android.support:coordinatorlayout:28.0.0'
|
|
|
43 |
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
|
44 |
implementation 'com.android.support:design:28.0.0'
|
|
|
45 |
}
|