mnemo_cards/lib/firebase_options.dart

86 lines
3.1 KiB
Dart
Raw Normal View History

2024-05-22 20:48:44 +00:00
// File generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members
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:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for windows - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
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: 'AIzaSyCq0V8JebjtqSgGSueouoLiprBROgPRBQw',
appId: '1:701767851968:web:714eb4fb5e3fd1ab2f7225',
messagingSenderId: '701767851968',
projectId: 'mnemo-cards',
authDomain: 'mnemo-cards.firebaseapp.com',
storageBucket: 'mnemo-cards.appspot.com',
measurementId: 'G-C37MMWS6WC',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBGn7PVVDX-o7WipivtuBjdoH5nYEPsHms',
appId: '1:701767851968:android:6190df55346394732f7225',
messagingSenderId: '701767851968',
projectId: 'mnemo-cards',
storageBucket: 'mnemo-cards.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAodY8s0ntALNeeGiUiTx6eg4g2Ar6C1to',
appId: '1:701767851968:ios:5c9040634eac8c152f7225',
messagingSenderId: '701767851968',
projectId: 'mnemo-cards',
storageBucket: 'mnemo-cards.appspot.com',
androidClientId: '701767851968-3jgootslus3ie76t682j4v7glletloud.apps.googleusercontent.com',
iosClientId: '701767851968-8dqcmk706p08gujqbl2m9s4sq1aljibs.apps.googleusercontent.com',
iosBundleId: 'com.cinnabarflower.mnemoCards',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyAodY8s0ntALNeeGiUiTx6eg4g2Ar6C1to',
appId: '1:701767851968:ios:5c9040634eac8c152f7225',
messagingSenderId: '701767851968',
projectId: 'mnemo-cards',
storageBucket: 'mnemo-cards.appspot.com',
androidClientId: '701767851968-dvbvmte4m90dkqitp013s4nd5c0df1n8.apps.googleusercontent.com',
iosClientId: '701767851968-8dqcmk706p08gujqbl2m9s4sq1aljibs.apps.googleusercontent.com',
iosBundleId: 'com.cinnabarflower.mnemoCards',
);
}