mirror of
https://github.com/mauiaaron/apple2.git
synced 2024-12-27 21:29:42 +00:00
5b3d0799a3
- Target Oreo per Goog's dictat - Min SDK is now 14 (ICS - 4.0) per build tools requirement
44 lines
1.0 KiB
Groovy
44 lines
1.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 26
|
|
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 14
|
|
targetSdkVersion 26
|
|
versionCode 22
|
|
versionName "1.2.2"
|
|
ndk {
|
|
moduleName "apple2ix"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:appcompat-v7:26.1.0'
|
|
}
|