summaryrefslogtreecommitdiff
path: root/client_app_flutter/android
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-11-05 04:46:48 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-11-05 04:46:48 +0200
commitc2b4fccc4dd0a7087e7d0dfd2d6cf9ca31bbb775 (patch)
tree11b0b150fb8d8e56c2d147cf54d72fc719c5c669 /client_app_flutter/android
parentefa2fba8e5a567b32c4ed789e5a23c296fac5d55 (diff)
Hooking up the whole firebase of the project via firebase CLI.
Also used flutter_fire firebase_core among several other libs. Changes to be committed: new file: client_app_flutter/android/app/google-services.json modified: client_app_flutter/android/build.gradle new file: client_app_flutter/ios/Runner/GoogleService-Info.plist new file: client_app_flutter/ios/firebase_app_id_file.json new file: client_app_flutter/lib/firebase_options.dart modified: client_app_flutter/lib/main.dart modified: client_app_flutter/pubspec.lock modified: client_app_flutter/pubspec.yaml
Diffstat (limited to 'client_app_flutter/android')
-rw-r--r--client_app_flutter/android/app/google-services.json29
-rw-r--r--client_app_flutter/android/build.gradle3
2 files changed, 32 insertions, 0 deletions
diff --git a/client_app_flutter/android/app/google-services.json b/client_app_flutter/android/app/google-services.json
new file mode 100644
index 0000000..5bea544
--- /dev/null
+++ b/client_app_flutter/android/app/google-services.json
@@ -0,0 +1,29 @@
+{
+ "project_info": {
+ "project_number": "443484865448",
+ "project_id": "meteo-board",
+ "storage_bucket": "meteo-board.appspot.com"
+ },
+ "client": [
+ {
+ "client_info": {
+ "mobilesdk_app_id": "1:443484865448:android:896502083b5ab60d5c539d",
+ "android_client_info": {
+ "package_name": "com.example.client_app_flutter"
+ }
+ },
+ "oauth_client": [],
+ "api_key": [
+ {
+ "current_key": "AIzaSyAY0cu67hMFb_5BHj3iG9afj73d_7UMSY0"
+ }
+ ],
+ "services": {
+ "appinvite_service": {
+ "other_platform_oauth_client": []
+ }
+ }
+ }
+ ],
+ "configuration_version": "1"
+} \ No newline at end of file
diff --git a/client_app_flutter/android/build.gradle b/client_app_flutter/android/build.gradle
index f7eb7f6..0391438 100644
--- a/client_app_flutter/android/build.gradle
+++ b/client_app_flutter/android/build.gradle
@@ -7,6 +7,9 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:7.3.0'
+ // START: FlutterFire Configuration
+ classpath 'com.google.gms:google-services:4.3.10'
+ // END: FlutterFire Configuration
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}