mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 00:45:32 +00:00
Android Studio is warning a call (from Firebase) will be deprecated end of 2019. This updates the versions of * Frebase * Gradle from 4.10.1 to 5.1.1 Also stubs a missing keyboard event handler in some of the sample/test projects.
38 lines
972 B
Groovy
38 lines
972 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
applicationId "com.keyman.kmsample2"
|
|
minSdkVersion 16
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
api (name:'keyman-engine', ext:'aar')
|
|
implementation "com.google.firebase:firebase-core:16.0.8"
|
|
implementation "com.google.firebase:firebase-crash:16.2.1"
|
|
implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar') {
|
|
transitive = true
|
|
}
|
|
}
|