build.gradle
1.4 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.cnlive.strike.xiaojiaspeaker"
minSdkVersion 18
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
buildToolsVersion = '29.0.2'
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
compile project(path: ':module_xiaojiaspeaker')
implementation "com.android.support:support-v4:$rootProject.supportV4"
implementation "com.android.support:appcompat-v7:$rootProject.appcompatV7"
implementation "com.android.support:design:$rootProject.design"
implementation "com.android.support:support-v13:$rootProject.supportV13"
implementation "com.android.support:recyclerview-v7:$rootProject.recyclerviewV7"
implementation "com.cnlive:app_arch:$rootProject.appArch"
implementation "com.qmuiteam:qmui:$rootProject.qmui"
implementation "com.cnlive.libs:base:$rootProject.libBase"
}