// Copyright 2022, the Chromium project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // File generated by FlutterFire CLI. // ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members 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 MyFirebaseOptions { static FirebaseOptions get currentPlatform { switch (defaultTargetPlatform) { case TargetPlatform.android: return android; case TargetPlatform.iOS: return ios; default: throw UnsupportedError( 'MyFirebaseOptions are not supported for this platform.', ); } } static const FirebaseOptions android = FirebaseOptions( apiKey: 'AIzaSyB7dHuJPzIfte7SHkKeeflzijLd33iRvt0', appId: '1:826534850691:android:d7780551ab203907262bb6', messagingSenderId: '826534850691', projectId: 'ifm-21739', storageBucket: 'ifm-21739.firebasestorage.app' ); static const FirebaseOptions ios = FirebaseOptions( apiKey: 'AIzaSyB0js4be6MN7iB8FbQ6pu03Hjw4TPkYBgE', appId: '1:826534850691:ios:16c725bf24a7d1e9262bb6', messagingSenderId: '826534850691', projectId: 'ifm-21739', storageBucket: 'ifm-21739.firebasestorage.app', iosBundleId: 'com.hongyegroup.app24ifm', ); }