added firestore to project

This commit is contained in:
Andrei Stoica 2025-01-03 14:38:14 -05:00
parent ed7ca12753
commit 69a038c84f
3 changed files with 11 additions and 0 deletions

5
.gitignore vendored
View File

@ -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

View File

@ -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"

View File

@ -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
}