android_id/app/build.gradle

31 lines
576 B
Groovy

plugins {
id 'com.android.application'
}
android {
namespace 'com.psmreborn.pkgj'
compileSdk 10
defaultConfig {
applicationId "com.psmreborn.pkgj"
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 {
}