apple2ix/Android/app/build.gradle
2015-08-27 21:41:04 -07:00

52 lines
1.3 KiB
Groovy

apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
signingConfigs {
release {
storeFile file("release2.keystore")
storePassword System.getenv("GOOGSTOREPWD")
keyPassword System.getenv("GOOGKEYPWD")
keyAlias "release"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
debug {
debuggable true
jniDebuggable true
}
}
defaultConfig {
applicationId "org.deadc0de.apple2ix"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "0.9.1"
ndk {
moduleName "apple2ix"
}
}
productFlavors {
demo {
applicationId "org.deadc0de.apple2ix.demo"
versionName "0.9.1-demo"
}
full {
applicationId "org.deadc0de.apple2ix.full"
versionName "0.9.1-full"
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
}