2019-02-24 15:36:12 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
2020-03-11 22:10:15 +08:00
|
|
|
compileSdkVersion 28
|
2019-02-24 15:36:12 +08:00
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdkVersion 19
|
2020-03-11 22:10:15 +08:00
|
|
|
targetSdkVersion 28
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-06-26 10:04:03 +08:00
|
|
|
namespace 'net.irext.sdk'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2020-03-11 22:10:15 +08:00
|
|
|
api fileTree(include: ['*.jar'], dir: 'libs')
|
|
|
|
|
api 'com.android.support:appcompat-v7:28.0.0'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|