2015-03-10 20:28:27 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2015-11-09 05:13:13 +00:00
|
|
|
compileSdkVersion 23
|
2015-10-23 07:03:06 +00:00
|
|
|
buildToolsVersion "21.1.2"
|
2015-03-15 22:52:10 +00:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
2015-05-10 21:06:20 +00:00
|
|
|
storeFile file("release2.keystore")
|
2015-03-15 22:52:10 +00:00
|
|
|
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'
|
2015-03-15 22:52:10 +00:00
|
|
|
signingConfig signingConfigs.release
|
2015-03-10 20:28:27 +00:00
|
|
|
}
|
2015-03-23 02:14:15 +00:00
|
|
|
debug {
|
|
|
|
debuggable true
|
2015-04-11 07:30:23 +00:00
|
|
|
jniDebuggable true
|
2015-03-23 02:14:15 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-28 04:41:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-09-05 20:52:26 +00:00
|
|
|
applicationId "org.deadc0de.apple2ix.basic"
|
2015-08-28 04:41:04 +00:00
|
|
|
minSdkVersion 10
|
2015-11-09 05:13:13 +00:00
|
|
|
targetSdkVersion 23
|
2016-02-20 21:39:59 +00:00
|
|
|
versionCode 17
|
|
|
|
versionName "1.1.7"
|
2015-08-28 04:41:04 +00:00
|
|
|
ndk {
|
|
|
|
moduleName "apple2ix"
|
|
|
|
}
|
|
|
|
}
|
2015-03-10 20:28:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2016-02-07 21:17:30 +00:00
|
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
2015-03-10 20:28:27 +00:00
|
|
|
}
|