cofounderella/lib/firebase_options.dart

87 lines
2.8 KiB
Dart
Raw Permalink Normal View History

2024-04-29 14:36:25 +02:00
// File generated by FlutterFire CLI.
// ignore_for_file: type=lint
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
case TargetPlatform.windows:
return windows;
case TargetPlatform.linux:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for linux - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.',
);
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyAcTMF5_e5pf-2K2bLrS5__RG49OD5-zxg',
appId: '1:630950433270:web:96992758355ef2ef5337d7',
messagingSenderId: '630950433270',
projectId: 'cofounderella',
authDomain: 'cofounderella.firebaseapp.com',
storageBucket: 'cofounderella.appspot.com',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyDeLVSu5UjJOOYUu2_zF7SNW0n6g8rCYBU',
appId: '1:630950433270:android:1b1c1c5d2f8951e05337d7',
messagingSenderId: '630950433270',
projectId: 'cofounderella',
storageBucket: 'cofounderella.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyCSjat4DIfcr8DGlAmUDvKiQNCT2n0Txzc',
appId: '1:630950433270:ios:d6beb39c4c5910795337d7',
messagingSenderId: '630950433270',
projectId: 'cofounderella',
storageBucket: 'cofounderella.appspot.com',
iosBundleId: 'com.example.cofounderella',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCSjat4DIfcr8DGlAmUDvKiQNCT2n0Txzc',
appId: '1:630950433270:ios:d6beb39c4c5910795337d7',
messagingSenderId: '630950433270',
projectId: 'cofounderella',
storageBucket: 'cofounderella.appspot.com',
iosBundleId: 'com.example.cofounderella',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyAcTMF5_e5pf-2K2bLrS5__RG49OD5-zxg',
appId: '1:630950433270:web:056a9486d097d8a55337d7',
messagingSenderId: '630950433270',
projectId: 'cofounderella',
authDomain: 'cofounderella.firebaseapp.com',
storageBucket: 'cofounderella.appspot.com',
);
}