123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // 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 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:
- 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: 'AIzaSyBNRdnOpCYHm70Qc0Jo4sEH8lEpqhfVm2I',
- appId: '1:11716618948:web:19cebf44e0d875f0937791',
- messagingSenderId: '11716618948',
- projectId: 'canvas-56baa',
- authDomain: 'canvas-56baa.firebaseapp.com',
- storageBucket: 'canvas-56baa.appspot.com',
- measurementId: 'G-F5J2T5S5VC',
- );
-
- static const FirebaseOptions android = FirebaseOptions(
- apiKey: 'AIzaSyAsylxl5a2treqN-GI1lqcx6Ode6-hl8hk',
- appId: '1:11716618948:android:e8a6512d2d905094937791',
- messagingSenderId: '11716618948',
- projectId: 'canvas-56baa',
- storageBucket: 'canvas-56baa.appspot.com',
- );
-
- static const FirebaseOptions ios = FirebaseOptions(
- apiKey: 'AIzaSyBqWHTEHPlp6FFcTGQXkwuMsOcEopWG3F8',
- appId: '1:11716618948:ios:2cfdbccbd58e6267937791',
- messagingSenderId: '11716618948',
- projectId: 'canvas-56baa',
- storageBucket: 'canvas-56baa.appspot.com',
- iosBundleId: 'com.urp.hris',
- );
-
- static const FirebaseOptions macos = FirebaseOptions(
- apiKey: 'AIzaSyBqWHTEHPlp6FFcTGQXkwuMsOcEopWG3F8',
- appId: '1:11716618948:ios:2cfdbccbd58e6267937791',
- messagingSenderId: '11716618948',
- projectId: 'canvas-56baa',
- storageBucket: 'canvas-56baa.appspot.com',
- iosBundleId: 'com.urp.hris',
- );
- }
|