|
0
|
1 |
apply plugin: 'com.android.application'
|
|
|
2 |
|
|
|
3 |
android {
|
|
|
4 |
compileSdkVersion 28
|
|
|
5 |
|
|
|
6 |
defaultConfig {
|
|
|
7 |
applicationId "hh.dejsem"
|
|
|
8 |
minSdkVersion 22
|
|
|
9 |
targetSdkVersion 26
|
|
|
10 |
versionCode 1
|
|
|
11 |
versionName "1.0"
|
|
|
12 |
|
|
|
13 |
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
buildTypes {
|
|
|
17 |
release {
|
|
|
18 |
postprocessing {
|
|
|
19 |
removeUnusedCode false
|
|
|
20 |
removeUnusedResources false
|
|
|
21 |
obfuscate false
|
|
|
22 |
optimizeCode false
|
|
|
23 |
proguardFile 'proguard-rules.pro'
|
|
|
24 |
}
|
|
|
25 |
}
|
|
|
26 |
}
|
|
|
27 |
}
|
|
|
28 |
|
|
|
29 |
dependencies {
|
|
|
30 |
implementation project(':hhlibv10-debug')
|
|
|
31 |
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
32 |
implementation 'com.android.support:support-v4:28.0.0-beta01'
|
|
|
33 |
implementation 'com.android.support:appcompat-v7:28.0.0-beta01'
|
|
|
34 |
implementation 'com.android.support:preference-v7:28.0.0-beta01'
|
|
|
35 |
}
|