NoPssDrm/app/build.gradle
2024-04-21 01:57:35 +12:00

35 lines
654 B
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.psmreborn.nopsmdrm'
compileSdk 10
defaultConfig {
applicationId "com.psmreborn.nopsmdrm"
minSdk 10
//noinspection ExpiredTargetSdkVersion dont care about google play
targetSdk 10
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
dependencies {
}
}
dependencies {
implementation project(':libsuperuser')
}