summaryrefslogtreecommitdiff
path: root/android/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/build.gradle')
-rw-r--r--android/app/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index be0889c..0545ba2 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -23,6 +23,7 @@ if (flutterVersionName == null) {
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
+apply plugin: 'com.google.gms.google-services'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
@@ -47,7 +48,7 @@ android {
applicationId "com.example.pmsna1"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
- minSdkVersion flutter.minSdkVersion
+ minSdkVersion 21 // flutter.minSdkVersion
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
@@ -67,5 +68,7 @@ flutter {
}
dependencies {
+ implementation platform('com.google.firebase:firebase-bom:31.3.0')
+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}