90 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.1 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:
 | 
						|
        return windows;
 | 
						|
      default:
 | 
						|
        throw UnsupportedError(
 | 
						|
          'DefaultFirebaseOptions are not supported for this platform.',
 | 
						|
        );
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  static const FirebaseOptions web = FirebaseOptions(
 | 
						|
    apiKey: 'AIzaSyCfgOdlcr7h8x8j0WKx_S2wXnGkOopq320',
 | 
						|
    appId: '1:961776991058:web:3a912c0eb14028e5f4188b',
 | 
						|
    messagingSenderId: '961776991058',
 | 
						|
    projectId: 'solian-0x001',
 | 
						|
    authDomain: 'solian-0x001.firebaseapp.com',
 | 
						|
    storageBucket: 'solian-0x001.firebasestorage.app',
 | 
						|
    measurementId: 'G-JD1YEG9D6F',
 | 
						|
  );
 | 
						|
 | 
						|
  static const FirebaseOptions android = FirebaseOptions(
 | 
						|
    apiKey: 'AIzaSyDvFNudXYs29uDtcCv6pFR8h5tXBs90FYk',
 | 
						|
    appId: '1:961776991058:android:a8d3f7995b0b8e86f4188b',
 | 
						|
    messagingSenderId: '961776991058',
 | 
						|
    projectId: 'solian-0x001',
 | 
						|
    storageBucket: 'solian-0x001.firebasestorage.app',
 | 
						|
  );
 | 
						|
 | 
						|
  static const FirebaseOptions ios = FirebaseOptions(
 | 
						|
    apiKey: 'AIzaSyCzQIyiYKoYHTpGXhN-IjgMML8z797WVD8',
 | 
						|
    appId: '1:961776991058:ios:727229d368cc47e1f4188b',
 | 
						|
    messagingSenderId: '961776991058',
 | 
						|
    projectId: 'solian-0x001',
 | 
						|
    storageBucket: 'solian-0x001.firebasestorage.app',
 | 
						|
    androidClientId: '961776991058-r4iv9qoio57ul7utbfpgfrda2etvtch8.apps.googleusercontent.com',
 | 
						|
    iosClientId: '961776991058-stt7et4qvn3cpscl4r61gl1hnlatqkig.apps.googleusercontent.com',
 | 
						|
    iosBundleId: 'dev.solsynth.solian',
 | 
						|
  );
 | 
						|
 | 
						|
  static const FirebaseOptions macos = FirebaseOptions(
 | 
						|
    apiKey: 'AIzaSyCzQIyiYKoYHTpGXhN-IjgMML8z797WVD8',
 | 
						|
    appId: '1:961776991058:ios:727229d368cc47e1f4188b',
 | 
						|
    messagingSenderId: '961776991058',
 | 
						|
    projectId: 'solian-0x001',
 | 
						|
    storageBucket: 'solian-0x001.firebasestorage.app',
 | 
						|
    androidClientId: '961776991058-r4iv9qoio57ul7utbfpgfrda2etvtch8.apps.googleusercontent.com',
 | 
						|
    iosClientId: '961776991058-stt7et4qvn3cpscl4r61gl1hnlatqkig.apps.googleusercontent.com',
 | 
						|
    iosBundleId: 'dev.solsynth.solian',
 | 
						|
  );
 | 
						|
 | 
						|
  static const FirebaseOptions windows = FirebaseOptions(
 | 
						|
    apiKey: 'AIzaSyCfgOdlcr7h8x8j0WKx_S2wXnGkOopq320',
 | 
						|
    appId: '1:961776991058:web:3a912c0eb14028e5f4188b',
 | 
						|
    messagingSenderId: '961776991058',
 | 
						|
    projectId: 'solian-0x001',
 | 
						|
    authDomain: 'solian-0x001.firebaseapp.com',
 | 
						|
    storageBucket: 'solian-0x001.firebasestorage.app',
 | 
						|
    measurementId: 'G-JD1YEG9D6F',
 | 
						|
  );
 | 
						|
 | 
						|
} |