2015-03-10 13:28:27 -07:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2016-06-26 11:29:41 -07:00
|
|
|
compileSdkVersion 24
|
|
|
|
buildToolsVersion "24"
|
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
|
|
|
}
|
|
|
|
}
|
2016-10-22 12:05:01 -07:00
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
}
|
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
|
2016-06-26 11:29:41 -07:00
|
|
|
targetSdkVersion 24
|
2016-05-11 21:05:42 -07:00
|
|
|
versionCode 18
|
|
|
|
versionName "1.1.8"
|
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-08-21 08:47:51 -10:00
|
|
|
compile 'com.android.support:appcompat-v7:24.2.0'
|
2015-03-10 13:28:27 -07:00
|
|
|
}
|