⬆️ Upgrading Sdk version and google services dependency

This commit is contained in:
Beautus 2019-10-12 19:40:19 +02:00 committed by Miguel Beltran
parent c298bb722f
commit b21234680f
2 changed files with 4 additions and 5 deletions

View file

@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
}
android {
compileSdkVersion 28
compileSdkVersion 29
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
@ -45,7 +45,7 @@ android {
defaultConfig {
applicationId "de.janoodle.circlesApp"
minSdkVersion 21 // avoid max 64k method limit
targetSdkVersion 28
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
@ -64,12 +64,11 @@ android {
buildTypes {
debug {
// app id will be "de.janoodle.circlesApp.debug"
applicationIdSuffix ".debug"
}
release {
// NOTE: ProGuard is not enabled at the moment
// See: https://flutter.dev/docs/deployment/android to enable it
signingConfig signingConfigs.debug
// signingConfig signingConfigs.release
}
}

View file

@ -11,7 +11,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.26.1'
}
}