// 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_dev.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: 'AIzaSyDGpYrWahQifMFqWW5gMbLy3CluzDxpFBQ',
    appId: '1:735004599167:web:8411274579b222eb82f04a',
    messagingSenderId: '735004599167',
    projectId: 'comwell-phoenix-dev',
    authDomain: 'comwell-phoenix-dev.firebaseapp.com',
    storageBucket: 'comwell-phoenix-dev.firebasestorage.app',
    measurementId: 'G-51EE8TQBVS',
  );

  static const FirebaseOptions android = FirebaseOptions(
    apiKey: 'AIzaSyBDb2WXsmgYppkmAo9vNIEsj9P99--zT8M',
    appId: '1:735004599167:android:3581fdbebd07fd5982f04a',
    messagingSenderId: '735004599167',
    projectId: 'comwell-phoenix-dev',
    storageBucket: 'comwell-phoenix-dev.firebasestorage.app',
  );

  static const FirebaseOptions ios = FirebaseOptions(
    apiKey: 'AIzaSyAApmLc6jj2GNlGrXVFtKJo3A5AD9EXqhA',
    appId: '1:735004599167:ios:276b6bc3fc059e9b82f04a',
    messagingSenderId: '735004599167',
    projectId: 'comwell-phoenix-dev',
    storageBucket: 'comwell-phoenix-dev.firebasestorage.app',
    iosBundleId: 'com.comwell.phoenix.dev',
  );

  static const FirebaseOptions macos = FirebaseOptions(
    apiKey: 'AIzaSyAApmLc6jj2GNlGrXVFtKJo3A5AD9EXqhA',
    appId: '1:735004599167:ios:33eaf052498b528b82f04a',
    messagingSenderId: '735004599167',
    projectId: 'comwell-phoenix-dev',
    storageBucket: 'comwell-phoenix-dev.firebasestorage.app',
    iosBundleId: 'com.assa.comwellKeyApp',
  );

  static const FirebaseOptions windows = FirebaseOptions(
    apiKey: 'AIzaSyDGpYrWahQifMFqWW5gMbLy3CluzDxpFBQ',
    appId: '1:735004599167:web:97277ae7b23ea63b82f04a',
    messagingSenderId: '735004599167',
    projectId: 'comwell-phoenix-dev',
    authDomain: 'comwell-phoenix-dev.firebaseapp.com',
    storageBucket: 'comwell-phoenix-dev.firebasestorage.app',
    measurementId: 'G-TTQZTN4P26',
  );

}