NoPssDrm/app/build.gradle
2024-05-20 14:37:18 +12:00

42 lines
1.1 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.psmreborn.nopsmdrm'
//noinspection GradleDependency needs to work properly on android 2.x
compileSdk 10
defaultConfig {
applicationId "com.psmreborn.nopsmdrm"
minSdk 10
//noinspection ExpiredTargetSdkVersion app is not distributed on google play -- this app breaks all its rules anyway
targetSdk 23
versionCode 193
versionName "1.9.3"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
applicationVariants.configureEach { variant ->
variant.outputs.configureEach {
def versionName = variant.versionName
outputFileName = "${applicationName}.apk"
}
}
}
dependencies {
implementation project(':libsuperuser')
implementation project(':libABX')
implementation 'yuv.pink:npticket:1.6'
//noinspection GradleDependency new version has min sdk 14
implementation 'com.android.support:support-core-utils:25.0.0'
}