build.gradle
1.92 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
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.cnlive.out_shared"
minSdkVersion 19
targetSdkVersion 29
versionCode 1
versionName "1.0"
multiDexEnabled true
javaCompileOptions {buildToolsVersion
annotationProcessorOptions {
arguments = [AROUTER_MODULE_NAME: project.getName(), AROUTER_GENERATE_DOC: "enable"]
}
}
}
buildTypes {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "androidx.legacy:legacy-support-v4:$rootProject.androidX_legacy_support_v4"
implementation "androidx.appcompat:appcompat:$rootProject.androidXAppcompat"
implementation "androidx.recyclerview:recyclerview:$rootProject.androidXRecyclerview"
implementation "androidx.constraintlayout:constraintlayout:$rootProject.androidXConstraintlayout"
implementation 'androidx.multidex:multidex:2.0.0'
//glide
implementation "com.github.bumptech.glide:glide:$rootProject.glide"
implementation "jp.wasabeef:glide-transformations:$rootProject.glideTransformations"
implementation project(path: ':OutSide_Share')
annotationProcessor "com.github.bumptech.glide:compiler:$rootProject.compiler"
implementation "pub.devrel:easypermissions:$rootProject.easypermissions"
implementation "com.chensl.rotatephotoview:rotatephotoview:$rootProject.rotatephotoview"
implementation "com.qmuiteam:qmui:$rootProject.qmui"
// implementation "com.cnlive.libs:base:$rootProject.libBase"
//ARouter
implementation "com.alibaba:arouter-api:$rootProject.arouterApiVersion"
annotationProcessor "com.alibaba:arouter-compiler:$rootProject.arouterCompilerVersion"
}