2019-02-24 15:36:12 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
|
|
android {
|
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'
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-06-26 10:04:03 +08:00
|
|
|
namespace 'net.irext.sdk'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-10-19 20:27:40 +08:00
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|