2015-03-10 20:28:27 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2018-11-18 22:30:17 +00:00
|
|
|
compileSdkVersion 27
|
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
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:05:01 +00:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
}
|
2015-08-28 04:41:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2015-09-05 20:52:26 +00:00
|
|
|
applicationId "org.deadc0de.apple2ix.basic"
|
2018-08-07 14:55:59 +00:00
|
|
|
minSdkVersion 14
|
2018-11-18 22:30:17 +00:00
|
|
|
targetSdkVersion 27
|
2017-12-03 21:44:04 +00:00
|
|
|
versionCode 22
|
2018-11-20 20:36:12 +00:00
|
|
|
versionName "2.0.0"
|
2015-08-28 04:41:04 +00:00
|
|
|
ndk {
|
|
|
|
moduleName "apple2ix"
|
|
|
|
}
|
|
|
|
}
|
2015-03-10 20:28:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-11-18 22:30:17 +00:00
|
|
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
api 'com.android.support:appcompat-v7:27.1.1'
|
2015-03-10 20:28:27 +00:00
|
|
|
}
|