NoPssDrm/app/build.gradle

36 lines
721 B
Groovy

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