Files
SAVExSTATE/lib/firebase_options.dart

89 lines
3.0 KiB
Dart

// 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: 'AIzaSyAhNNOuOtA_x6PprjiF6ch4lmUMMO6crKk',
appId: '1:401871647549:web:9a403344032a2520bd0b54',
messagingSenderId: '401871647549',
projectId: 'sage-the-64th-wonder',
authDomain: 'sage-the-64th-wonder.firebaseapp.com',
storageBucket: 'sage-the-64th-wonder.firebasestorage.app',
measurementId: 'G-EBH1H7K6DM',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyB0NUOvlrxw4FLs04AxP5tEExBzvBw7Yc0',
appId: '1:401871647549:android:bc0a553f0358981ebd0b54',
messagingSenderId: '401871647549',
projectId: 'sage-the-64th-wonder',
storageBucket: 'sage-the-64th-wonder.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyCcmGY2iognTHrf61mge9sPMdXj0hcS5DU',
appId: '1:401871647549:ios:158bd8714840c262bd0b54',
messagingSenderId: '401871647549',
projectId: 'sage-the-64th-wonder',
storageBucket: 'sage-the-64th-wonder.firebasestorage.app',
iosBundleId: 'com.stnebulathe64thwonder.the64thWonder',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCcmGY2iognTHrf61mge9sPMdXj0hcS5DU',
appId: '1:401871647549:ios:158bd8714840c262bd0b54',
messagingSenderId: '401871647549',
projectId: 'sage-the-64th-wonder',
storageBucket: 'sage-the-64th-wonder.firebasestorage.app',
iosBundleId: 'com.stnebulathe64thwonder.the64thWonder',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyAhNNOuOtA_x6PprjiF6ch4lmUMMO6crKk',
appId: '1:401871647549:web:2a782aff43bcbd21bd0b54',
messagingSenderId: '401871647549',
projectId: 'sage-the-64th-wonder',
authDomain: 'sage-the-64th-wonder.firebaseapp.com',
storageBucket: 'sage-the-64th-wonder.firebasestorage.app',
measurementId: 'G-N620ZDBGSS',
);
}