2019-02-24 15:36:12 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
signingConfigs {
|
|
|
|
|
}
|
2023-06-26 10:04:03 +08:00
|
|
|
compileSdkVersion 33
|
2019-02-24 15:36:12 +08:00
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion 19
|
2023-06-26 10:04:03 +08:00
|
|
|
targetSdkVersion 33
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
productFlavors {
|
|
|
|
|
}
|
2023-06-26 10:04:03 +08:00
|
|
|
namespace 'net.irext.webapi'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2020-03-11 22:10:15 +08:00
|
|
|
api files('libs/gson-2.8.0.jar')
|
|
|
|
|
api files('libs/okhttp-3.7.0.jar')
|
|
|
|
|
api files('libs/okio-1.12.0.jar')
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|