From 69a038c84fc9d2cc7a3d8819505b9766581ac402 Mon Sep 17 00:00:00 2001 From: Andrei Stoica Date: Fri, 3 Jan 2025 14:38:14 -0500 Subject: [PATCH] added firestore to project --- .gitignore | 5 +++++ android/app/build.gradle | 3 +++ android/settings.gradle | 3 +++ 3 files changed, 11 insertions(+) diff --git a/.gitignore b/.gitignore index 29a3a50..2a78c7e 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,8 @@ app.*.map.json /android/app/debug /android/app/profile /android/app/release + +# Firebase +lib/firebase_options.dart +android/app/google-services.json +firebase.json diff --git a/android/app/build.gradle b/android/app/build.gradle index 3156c70..7ba9da1 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,5 +1,8 @@ plugins { id "com.android.application" + // START: FlutterFire Configuration + id 'com.google.gms.google-services' + // END: FlutterFire Configuration id "kotlin-android" // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins. id "dev.flutter.flutter-gradle-plugin" diff --git a/android/settings.gradle b/android/settings.gradle index b9e43bd..9759a22 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -19,6 +19,9 @@ pluginManagement { plugins { id "dev.flutter.flutter-plugin-loader" version "1.0.0" id "com.android.application" version "8.1.0" apply false + // START: FlutterFire Configuration + id "com.google.gms.google-services" version "4.3.15" apply false + // END: FlutterFire Configuration id "org.jetbrains.kotlin.android" version "1.8.22" apply false }