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'
|
}
|