spiegel-keyman/android/KMAPro/kMAPro/build.gradle
Darcy Wong cde60e23f4 feat(android): Add QR Codes on Keyboard Info pages
Addresses Android for #1535

Add QR Codes to the keyman.com keyboard page.

If the main app doesn't include the QRGen libraries, the QR Code isn't generated/displayed.

Also update the list of dependencies in README.md
2019-12-17 15:53:34 +07:00

152 lines
4.9 KiB
Groovy

plugins {
id 'com.android.application'
id 'io.fabric'
id 'com.github.triplet.play' version '2.5.0' apply false
id 'name.remal.default-plugins'
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.2"
defaultConfig {
applicationId "com.tavultesoft.kmapro"
minSdkVersion 19
targetSdkVersion 29
//println "===DUMPING PROPERTIES==="
//dumpProperties(project) // Use this to dump all external properties for debugging TeamCity integration
//println "===END DUMP==="
String env_services_json_file = System.getenv('services_json_file')
if (env_services_json_file != null) {
env_services_json_file = String.valueOf(env_services_json_file)
println "Copying production google-services.json and using at kMAPro/"
copy {
from env_services_json_file
include '*.json'
into './'
}
}
String env_build_number = System.getenv("BUILD_NUMBER") //assigned by TeamCity, so all caps
String env_build_counter = System.getenv("build_counter")
if (env_build_number != null) {
println "Using build number $env_build_number and counter $env_build_counter from environment"
versionCode env_build_counter as Integer
versionName env_build_number
} else {
String majorMinorVersion = file('$projectDir/../../../../resources/VERSION.md').text.trim()
versionCode 100
versionName majorMinorVersion + '.0.0'
println "Using build $majorMinorVersion from project VERSION.md"
}
}
String env_release_store_file = System.getenv("release_store_file")
String env_release_store_password = System.getenv("release_store_password")
String env_release_key_alias = System.getenv("release_key_alias")
String env_release_key_password = System.getenv("release_key_password")
if (env_release_store_file != null) {
signingConfigs {
release {
println "Using signing from environment"
storeFile file(String.valueOf(env_release_store_file))
storePassword env_release_store_password
keyAlias env_release_key_alias
keyPassword env_release_key_password
}
}
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
if (env_release_store_file != null) {
signingConfig signingConfigs.release
}
}
}
productFlavors {
}
lintOptions {
disable 'MissingTranslation'
}
}
String env_keys_json_file = System.getenv("keys_json_file")
if (env_keys_json_file != null) {
apply plugin: 'com.github.triplet.play'
play {
serviceAccountCredentials = file(String.valueOf(env_keys_json_file))
// Deactivate lower conflicting version APKs
resolutionStrategy = "ignore"
switch (System.env.TIER) {
case 'beta':
track = 'beta'
break
case 'stable':
track = 'production'
break
default:
track = 'alpha'
}
println "TIER set to $track"
}
}
repositories {
flatDir {
dirs 'libs'
}
google()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.0.0'
api(name: 'keyman-engine', ext: 'aar')
implementation "com.google.firebase:firebase-analytics:17.2.1"
implementation "com.google.firebase:firebase-messaging:20.0.1"
implementation "com.google.firebase:firebase-crash:16.2.1"
implementation('com.crashlytics.sdk.android:crashlytics:2.10.1@aar') {
transitive = true
}
implementation 'androidx.preference:preference:1.1.0'
// Add dependency for generating QR Codes
// (Even though it's embedded in KMEA, because we're manually copying keyman-engine.aar,
// we "lose" it in the dependency management)
implementation ('com.github.kenglxn.QRGen:android:2.6.0') {
transitive = true
}
}
/*def void dumpProperties(it){
//println "Examining $it.name:"
//println "Meta:"
//println it.metaClass.metaMethods*.name.sort().unique()
//println "Methods:"
//println it.metaClass.methods*.name.sort().unique()
//println "Depends On:"
//println it.dependsOn.collect({it*.getName()})
println "Properties:"
println it.properties.entrySet()*.toString()
.sort().toString().replaceAll(", ","\n")
}*/
apply plugin: 'com.google.gms.google-services'