apple2ix/Android/app/build.gradle

42 lines
1.0 KiB
Groovy
Raw Normal View History

2015-03-10 20:28:27 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "21.1.2"
signingConfigs {
release {
2015-05-10 21:06:20 +00:00
storeFile file("release2.keystore")
storePassword System.getenv("GOOGSTOREPWD")
keyPassword System.getenv("GOOGKEYPWD")
keyAlias "release"
}
2015-03-10 20:28:27 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
2015-03-10 20:28:27 +00:00
}
2015-03-23 02:14:15 +00:00
debug {
debuggable true
jniDebuggable true
2015-03-23 02:14:15 +00:00
}
}
defaultConfig {
applicationId "org.deadc0de.apple2ix.basic"
minSdkVersion 10
targetSdkVersion 23
2015-11-09 06:03:22 +00:00
versionCode 7
versionName "1.0.4"
ndk {
moduleName "apple2ix"
}
}
2015-03-10 20:28:27 +00:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.0'
2015-03-10 20:28:27 +00:00
}