89 lines
3.0 KiB
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: 'AIzaSyDnRirxd46eWwUkK9cKi-g0mKaIBY3LODM',
|
|
appId: '1:956683546941:web:f66e35806267907c121554',
|
|
messagingSenderId: '956683546941',
|
|
projectId: 'blindmaster-54055',
|
|
authDomain: 'blindmaster-54055.firebaseapp.com',
|
|
storageBucket: 'blindmaster-54055.firebasestorage.app',
|
|
measurementId: 'G-Y31FSGG3KP',
|
|
);
|
|
|
|
static const FirebaseOptions android = FirebaseOptions(
|
|
apiKey: 'AIzaSyBJzL-jeo4xa_rQkHymzku_2lIJ6WJ8hoI',
|
|
appId: '1:956683546941:android:828055a1f543b75f121554',
|
|
messagingSenderId: '956683546941',
|
|
projectId: 'blindmaster-54055',
|
|
storageBucket: 'blindmaster-54055.firebasestorage.app',
|
|
);
|
|
|
|
static const FirebaseOptions ios = FirebaseOptions(
|
|
apiKey: 'AIzaSyAH5KvipSKH5J6dkjd6Ft7ALAqBYANB-Jo',
|
|
appId: '1:956683546941:ios:1059be0ae683894b121554',
|
|
messagingSenderId: '956683546941',
|
|
projectId: 'blindmaster-54055',
|
|
storageBucket: 'blindmaster-54055.firebasestorage.app',
|
|
iosBundleId: 'com.adipu.blindMaster',
|
|
);
|
|
|
|
static const FirebaseOptions macos = FirebaseOptions(
|
|
apiKey: 'AIzaSyAH5KvipSKH5J6dkjd6Ft7ALAqBYANB-Jo',
|
|
appId: '1:956683546941:ios:1059be0ae683894b121554',
|
|
messagingSenderId: '956683546941',
|
|
projectId: 'blindmaster-54055',
|
|
storageBucket: 'blindmaster-54055.firebasestorage.app',
|
|
iosBundleId: 'com.adipu.blindMaster',
|
|
);
|
|
|
|
static const FirebaseOptions windows = FirebaseOptions(
|
|
apiKey: 'AIzaSyDnRirxd46eWwUkK9cKi-g0mKaIBY3LODM',
|
|
appId: '1:956683546941:web:f5d94d05b6ce6bef121554',
|
|
messagingSenderId: '956683546941',
|
|
projectId: 'blindmaster-54055',
|
|
authDomain: 'blindmaster-54055.firebaseapp.com',
|
|
storageBucket: 'blindmaster-54055.firebasestorage.app',
|
|
measurementId: 'G-WR6581J4P4',
|
|
);
|
|
}
|