Files
examples/android-example/app/build.gradle

52 lines
1.3 KiB
Groovy
Raw Normal View History

2019-02-24 15:36:12 +08:00
apply plugin: 'com.android.application'
android {
defaultConfig {
applicationId "net.irext.ircontrol"
compileSdk 36
targetSdkVersion 36
minSdkVersion 26
versionCode 7
versionName '1.5.0'
2025-12-18 20:04:23 +08:00
2019-02-24 15:36:12 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2019-02-24 15:36:12 +08:00
}
flavorDimensions = ['app']
2019-02-24 15:36:12 +08:00
productFlavors {
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 {
implementation project(':decodesdk')
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'libs', include: ['*.aar'])
2025-12-18 20:04:23 +08:00
implementation 'net.irext.webapi:irext-androidapi:1.5.2'
2025-12-18 20:04:23 +08:00
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'androidx.core:core:1.13.1'
implementation 'com.google.android.material:material:1.13.0'
2026-01-25 15:38:28 +08:00
implementation 'com.google.code.gson:gson:2.13.2'
implementation 'com.android.support:multidex:1.0.3'
2019-02-24 22:47:11 +08:00
}