build.gradle
1.69 KB
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
65
66
67
68
69
70
71
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.vhall.guangfa"
minSdkVersion 16
targetSdkVersion 28
versionCode 355
versionName "5.0.2"
multiDexEnabled true
signingConfig signingConfigs.debug
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
signingConfigs {
release {
storeFile file("vhall_android_app.keystore")
storePassword '123456'
keyAlias 'yanting lin'
keyPassword '123456'
}
debug {
storeFile file("icekeystore.keystore")
storePassword '123456'
keyAlias 'icesslkey'
keyPassword '123456'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
abortOnError false
}
packagingOptions{
exclude 'META-INF/beans.xml'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
api project(':uilibs')
implementation "com.android.support:appcompat-v7:${SUPPORT_VERSION}"
implementation 'com.android.support.constraint:constraint-layout:2.0.2'
implementation 'com.android.support:recyclerview-v7:28.0.0'
}
//repositories {
// flatDir {
// dirs '../uilibs/libs'
// }
//}
repositories {
mavenCentral()
}