GSI - Employe Self Service Mobile
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
3.1 KiB

2 months ago
  1. // File generated by FlutterFire CLI.
  2. // ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members
  3. import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
  4. import 'package:flutter/foundation.dart'
  5. show defaultTargetPlatform, kIsWeb, TargetPlatform;
  6. /// Default [FirebaseOptions] for use with your Firebase apps.
  7. ///
  8. /// Example:
  9. /// ```dart
  10. /// import 'firebase_options.dart';
  11. /// // ...
  12. /// await Firebase.initializeApp(
  13. /// options: DefaultFirebaseOptions.currentPlatform,
  14. /// );
  15. /// ```
  16. class DefaultFirebaseOptions {
  17. static FirebaseOptions get currentPlatform {
  18. if (kIsWeb) {
  19. return web;
  20. }
  21. switch (defaultTargetPlatform) {
  22. case TargetPlatform.android:
  23. return android;
  24. case TargetPlatform.iOS:
  25. return ios;
  26. case TargetPlatform.macOS:
  27. return macos;
  28. case TargetPlatform.windows:
  29. return windows;
  30. case TargetPlatform.linux:
  31. throw UnsupportedError(
  32. 'DefaultFirebaseOptions have not been configured for linux - '
  33. 'you can reconfigure this by running the FlutterFire CLI again.',
  34. );
  35. default:
  36. throw UnsupportedError(
  37. 'DefaultFirebaseOptions are not supported for this platform.',
  38. );
  39. }
  40. }
  41. static const FirebaseOptions android = FirebaseOptions(
  42. apiKey: 'AIzaSyCCZWuGRcskl86O0WmPpLGQk4Y_1ACPEhk',
  43. appId: '1:476641837995:android:68990cdb31f6dbeb0e08ee',
  44. messagingSenderId: '476641837995',
  45. projectId: 'employee-self-service-8280b',
  46. storageBucket: 'employee-self-service-8280b.appspot.com',
  47. );
  48. static const FirebaseOptions web = FirebaseOptions(
  49. apiKey: 'AIzaSyDKZ2NozLQUpWeH2Cv17kuJz1f_MsG-p1Y',
  50. appId: '1:476641837995:web:2c8fc6cd0f1c92300e08ee',
  51. messagingSenderId: '476641837995',
  52. projectId: 'employee-self-service-8280b',
  53. authDomain: 'employee-self-service-8280b.firebaseapp.com',
  54. storageBucket: 'employee-self-service-8280b.appspot.com',
  55. measurementId: 'G-PWCGCQZM3K',
  56. );
  57. static const FirebaseOptions macos = FirebaseOptions(
  58. apiKey: 'AIzaSyDtzT93pKa1UvHhlNlkmt_Kpvfjq_QVO5g',
  59. appId: '1:476641837995:ios:53c1a29137d4b3d80e08ee',
  60. messagingSenderId: '476641837995',
  61. projectId: 'employee-self-service-8280b',
  62. storageBucket: 'employee-self-service-8280b.appspot.com',
  63. iosBundleId: 'com.gsi.ess',
  64. );
  65. static const FirebaseOptions ios = FirebaseOptions(
  66. apiKey: 'AIzaSyDtzT93pKa1UvHhlNlkmt_Kpvfjq_QVO5g',
  67. appId: '1:476641837995:ios:53c1a29137d4b3d80e08ee',
  68. messagingSenderId: '476641837995',
  69. projectId: 'employee-self-service-8280b',
  70. storageBucket: 'employee-self-service-8280b.appspot.com',
  71. iosBundleId: 'com.gsi.ess',
  72. );
  73. static const FirebaseOptions windows = FirebaseOptions(
  74. apiKey: 'AIzaSyDKZ2NozLQUpWeH2Cv17kuJz1f_MsG-p1Y',
  75. appId: '1:476641837995:web:b1eb67082ef4f7ee0e08ee',
  76. messagingSenderId: '476641837995',
  77. projectId: 'employee-self-service-8280b',
  78. authDomain: 'employee-self-service-8280b.firebaseapp.com',
  79. storageBucket: 'employee-self-service-8280b.appspot.com',
  80. measurementId: 'G-XCV377ENK6',
  81. );
  82. }