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