apple2ix/Android/app/build.gradle

44 lines
1.0 KiB
Groovy
Raw Normal View History

2015-03-10 20:28:27 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
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 14
targetSdkVersion 29
2018-11-26 03:01:35 +00:00
versionCode 24
versionName "2.1.0-RC1"
ndk {
moduleName "apple2ix"
}
}
2015-03-10 20:28:27 +00:00
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api 'androidx.appcompat:appcompat:1.0.0'
2015-03-10 20:28:27 +00:00
}