admin
2022-03-31 36754ba47da7a3277d5be183a523c912a1dc4cef
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
plugins {
    id 'com.android.application'
}
 
android {
 
    useLibrary 'org.apache.http.legacy'
 
    compileSdk 31
 
    defaultConfig {
        applicationId "com.demo.android"
        minSdk 21
        targetSdk 29
        versionCode 1
        versionName "1.0"
 
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 
        multiDexEnabled true
    }
 
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}
 
dependencies {
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'com.google.android.material:material:1.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    implementation project(path: ':library-common')
    implementation project(path: ':library-dp')
    implementation project(path: ':library-ad')
    implementation project(path: ':library-ec')
    implementation project(path: ':library-login')
    implementation project(path: ':library-flutter')
    androidTestImplementation 'androidx.test.ext:junit:1.1.2'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
    implementation 'androidx.cardview:cardview:1.0.0'
 
    implementation 'org.apache.httpcomponents:httpcore:4.4.2'
 
    //图片加载库
    implementation 'com.github.bumptech.glide:glide:4.12.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
 
 
    //indicator
    implementation 'com.github.hackware1993:MagicIndicator:1.7.0'
 
 
    implementation files('libs/umeng-apm-armeabi-v1.5.2.aar')
    implementation files('libs/umeng-common-9.4.4.jar')
    implementation files('libs/umeng-asms-armeabi-v1.4.1.aar')
 
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.material:material:1.3.0'
}