diff --git a/android/app/google-services.json b/android/app/google-services.json new file mode 100644 index 0000000..60fa08d --- /dev/null +++ b/android/app/google-services.json @@ -0,0 +1,29 @@ +{ + "project_info": { + "project_number": "630950433270", + "project_id": "cofounderella", + "storage_bucket": "cofounderella.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:630950433270:android:1b1c1c5d2f8951e05337d7", + "android_client_info": { + "package_name": "com.example.cofounderella" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyDeLVSu5UjJOOYUu2_zF7SNW0n6g8rCYBU" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java b/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java new file mode 100644 index 0000000..752fc18 --- /dev/null +++ b/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java @@ -0,0 +1,25 @@ +// Generated file. +// +// If you wish to remove Flutter's multidex support, delete this entire file. +// +// Modifications to this file should be done in a copy under a different name +// as this file may be regenerated. + +package io.flutter.app; + +import android.app.Application; +import android.content.Context; +import androidx.annotation.CallSuper; +import androidx.multidex.MultiDex; + +/** + * Extension of {@link android.app.Application}, adding multidex support. + */ +public class FlutterMultiDexApplication extends Application { + @Override + @CallSuper + protected void attachBaseContext(Context base) { + super.attachBaseContext(base); + MultiDex.install(this); + } +}