panlili2024
2024-11-14 b1569b789eef12cf5d4252620ca7e7d2d9c8b93a
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
plugins {
    id 'com.android.library'
}
 
android {
    compileSdkVersion rootProject.compileSdkVersion
 
    defaultConfig {
        minSdkVersion rootProject.minSdkVersion
        targetSdkVersion rootProject.targetSdkVersion
        versionCode 7
        versionName "1.1.9"
 
        consumerProguardFiles "consumer-rules.pro"
    }
 
    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 fileTree(include: ['*.jar'], dir: 'libs')
 
    api 'com.hdl.hdlhttp:hxhttp:1.0.4'
    api 'com.squareup.okhttp3:logging-interceptor:4.9.1'
//    embed(name: 'hxhttp_1.0.4_230201',ext: 'aar')
 
    api 'com.google.code.gson:gson:2.8.8'
}