2019-02-24 15:36:12 +08:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
|
|
android {
|
2025-10-19 20:27:40 +08:00
|
|
|
compileSdk 36
|
2019-02-24 15:36:12 +08:00
|
|
|
defaultConfig {
|
|
|
|
|
applicationId "net.irext.ircontrol"
|
2025-10-19 20:27:40 +08:00
|
|
|
targetSdkVersion 36
|
|
|
|
|
minSdkVersion 26
|
|
|
|
|
versionCode 7
|
|
|
|
|
versionName '1.5.0'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-19 20:27:40 +08:00
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
minifyEnabled false
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
}
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
2025-10-19 20:27:40 +08:00
|
|
|
|
|
|
|
|
flavorDimensions = ['app']
|
|
|
|
|
|
2019-02-24 15:36:12 +08:00
|
|
|
productFlavors {
|
2025-10-19 20:27:40 +08:00
|
|
|
app {
|
|
|
|
|
ndk {
|
|
|
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
2023-06-26 10:04:03 +08:00
|
|
|
namespace 'net.irext.ircontrol'
|
2019-02-24 15:36:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2025-10-19 20:27:40 +08:00
|
|
|
implementation project(':decodesdk')
|
|
|
|
|
implementation project(':web-api')
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
|
|
|
|
2020-03-11 22:10:15 +08:00
|
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
|
|
|
implementation 'com.android.support:design:28.0.0'
|
|
|
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
2025-10-19 20:27:40 +08:00
|
|
|
|
|
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
|
|
2019-02-24 22:47:11 +08:00
|
|
|
}
|