From 19709e296aec10d2cd24f904a87243216a454d5f Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Mon, 4 Dec 2023 23:16:08 +0200 Subject: Added auth to signup page + some UI refactoring --- android/app/build.gradle | 2 +- android/app/google-services.json | 29 +++++++++++++++++++++++++++++ android/build.gradle | 3 +++ 3 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 android/app/google-services.json (limited to 'android') diff --git a/android/app/build.gradle b/android/app/build.gradle index 68376f1..1b4a974 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -45,7 +45,7 @@ android { applicationId "com.example.carpool" // 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 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName diff --git a/android/app/google-services.json b/android/app/google-services.json new file mode 100644 index 0000000..52c8581 --- /dev/null +++ b/android/app/google-services.json @@ -0,0 +1,29 @@ +{ + "project_info": { + "project_number": "824587935735", + "project_id": "carpool-3cd5c", + "storage_bucket": "carpool-3cd5c.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:824587935735:android:4cd4c87a6a1246105298f2", + "android_client_info": { + "package_name": "com.example.carpool" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyBHYiITx2IFiHrDbwU65eKiy3bHhpDgPG0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle index f7eb7f6..0391438 100644 --- a/android/build.gradle +++ b/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" } } -- cgit v1.2.3