84 lines
2.9 KiB
Dart
84 lines
2.9 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) {
|
|
throw UnsupportedError(
|
|
'DefaultFirebaseOptions have not been configured for web - '
|
|
'you can reconfigure this by running the FlutterFire CLI again.',
|
|
);
|
|
}
|
|
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 android = FirebaseOptions(
|
|
apiKey: 'AIzaSyDyWHadwDE-CAtMbKfZ7Llq18zGMDPyRpY',
|
|
appId: '1:652710461284:android:44b78de76f4d6f88f54471',
|
|
messagingSenderId: '652710461284',
|
|
projectId: 'sologin-55bbd',
|
|
storageBucket: 'sologin-55bbd.firebasestorage.app',
|
|
);
|
|
|
|
static const FirebaseOptions ios = FirebaseOptions(
|
|
apiKey: 'AIzaSyC9CtRWl698ntfegoGzdhjQjmpYNNMkTgI',
|
|
appId: '1:652710461284:ios:6eee89e45d69a3d1f54471',
|
|
messagingSenderId: '652710461284',
|
|
projectId: 'sologin-55bbd',
|
|
storageBucket: 'sologin-55bbd.firebasestorage.app',
|
|
iosClientId: '652710461284-edt1dp5nd7v5k6u0hov8hrq2fkk46bal.apps.googleusercontent.com',
|
|
iosBundleId: 'com.xperiencemhuntlauncher.mhuntLauncher',
|
|
);
|
|
|
|
static const FirebaseOptions macos = FirebaseOptions(
|
|
apiKey: 'AIzaSyC9CtRWl698ntfegoGzdhjQjmpYNNMkTgI',
|
|
appId: '1:652710461284:ios:bae7c085a1ba8dfbf54471',
|
|
messagingSenderId: '652710461284',
|
|
projectId: 'sologin-55bbd',
|
|
storageBucket: 'sologin-55bbd.firebasestorage.app',
|
|
iosClientId: '652710461284-7c8o89arbs7aebma2gljgi8iq06f07k6.apps.googleusercontent.com',
|
|
iosBundleId: 'com.xperiencemhuntlauncher.mhuntla',
|
|
);
|
|
|
|
static const FirebaseOptions windows = FirebaseOptions(
|
|
apiKey: 'AIzaSyCpATgMXv9Pu3coBwljh0uv9I9ciFkBJIA',
|
|
appId: '1:652710461284:web:4d52a8a41d1f3ae2f54471',
|
|
messagingSenderId: '652710461284',
|
|
projectId: 'sologin-55bbd',
|
|
authDomain: 'sologin-55bbd.firebaseapp.com',
|
|
storageBucket: 'sologin-55bbd.firebasestorage.app',
|
|
measurementId: 'G-8NTXQZGV4P',
|
|
);
|
|
}
|