50 lines
1.3 KiB
Groovy
50 lines
1.3 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 36
|
|
defaultConfig {
|
|
applicationId "net.irext.ircontrol"
|
|
targetSdkVersion 36
|
|
minSdkVersion 26
|
|
versionCode 7
|
|
versionName '1.5.0'
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
flavorDimensions = ['app']
|
|
|
|
productFlavors {
|
|
app {
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
}
|
|
}
|
|
}
|
|
namespace 'net.irext.ircontrol'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':decodesdk')
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
|
|
implementation 'net.irext.webapi:irext-androidapi:1.5.1'
|
|
|
|
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'
|
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
} |