2019-02-24 15:36:12 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
signingConfigs {
|
|
|
|
|
}
|
2025-10-19 20:27:40 +08:00
|
|
|
compileSdk 36
|
2019-02-24 15:36:12 +08:00
|
|
|
defaultConfig {
|
2025-10-19 20:27:40 +08:00
|
|
|
minSdkVersion 26
|
|
|
|
|
targetSdkVersion 36
|
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 {
|
2025-10-19 20:27:40 +08:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
|
|
|
|
|
implementation 'com.squareup.okio:okio:3.4.0'
|
|
|
|
|
implementation 'com.google.code.gson:gson:2.13.2'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|