apple2ix/Android/app/build.gradle

45 lines
1.1 KiB
Groovy
Raw Normal View History

2015-03-10 20:28:27 +00:00
apply plugin: 'com.android.application'
android {
2016-06-26 18:29:41 +00:00
compileSdkVersion 24
buildToolsVersion '26.0.2'
signingConfigs {
release {
2015-05-10 21:06:20 +00:00
storeFile file("release2.keystore")
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'
signingConfig signingConfigs.release
2015-03-10 20:28:27 +00:00
}
2015-03-23 02:14:15 +00:00
debug {
debuggable true
jniDebuggable true
2015-03-23 02:14:15 +00:00
}
}
lintOptions {
checkReleaseBuilds false
}
defaultConfig {
applicationId "org.deadc0de.apple2ix.basic"
minSdkVersion 10
2016-06-26 18:29:41 +00:00
targetSdkVersion 24
2017-12-03 21:44:04 +00:00
versionCode 22
versionName "1.2.2"
ndk {
moduleName "apple2ix"
}
}
2015-03-10 20:28:27 +00:00
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:24.2.1'
2015-03-10 20:28:27 +00:00
}