mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-01-26 02:30:30 +00:00
2f8381e4df
- This currently blows up if we're missing I18N/L10N strings for a [currently] non-supported translation - We have our own release procedure that should be sufficient at this point
45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24"
|
|
signingConfigs {
|
|
release {
|
|
storeFile file("release2.keystore")
|
|
storePassword System.getenv("GOOGSTOREPWD")
|
|
keyPassword System.getenv("GOOGKEYPWD")
|
|
keyAlias "release"
|
|
}
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
debug {
|
|
debuggable true
|
|
jniDebuggable true
|
|
}
|
|
}
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "org.deadc0de.apple2ix.basic"
|
|
minSdkVersion 10
|
|
targetSdkVersion 24
|
|
versionCode 18
|
|
versionName "1.1.8"
|
|
ndk {
|
|
moduleName "apple2ix"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:24.2.0'
|
|
}
|