// 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_prod.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:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for macos - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
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: 'AIzaSyBa1nxiH7M5_9fBHk4DVHVpuPz4Ek-UPO4',
appId: '1:1031550326508:web:ac21b20cf60305e9cdf7c9',
messagingSenderId: '1031550326508',
projectId: 'comwell-phoenix',
authDomain: 'comwell-phoenix.firebaseapp.com',
storageBucket: 'comwell-phoenix.firebasestorage.app',
measurementId: 'G-VW2YPVJ3Y4',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyC7AtY1V1dxx4B280yOvcOjhaMOsnhEMMA',
appId: '1:1031550326508:android:04a896341af4f448cdf7c9',
messagingSenderId: '1031550326508',
projectId: 'comwell-phoenix',
storageBucket: 'comwell-phoenix.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyBgjzugYkBvtPwrx8SHqHsCCPFwxuOquyQ',
appId: '1:1031550326508:ios:05ac9b069efbbac9cdf7c9',
messagingSenderId: '1031550326508',
projectId: 'comwell-phoenix',
storageBucket: 'comwell-phoenix.firebasestorage.app',
iosBundleId: 'com.comwell.phoenix',
);
}