google-services.json

master
Rafael 2024-04-30 23:23:26 +02:00
parent a00170b52a
commit ac511a75ee
2 changed files with 54 additions and 0 deletions

View File

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

View File

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