Files
examples/android-example/web-api/build.gradle

27 lines
550 B
Groovy
Raw Normal View History

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