Files
flux/lib/firebase_options.dart

89 lines
3.0 KiB
Dart
Raw Normal View History

2026-05-04 19:32:14 +02:00
// 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:
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: 'AIzaSyA8vQbyEt81DoAuRVDc_3W_VIKY-9F-XTw',
appId: '1:872447580790:web:10745e7f9afb447d5d9d57',
messagingSenderId: '872447580790',
projectId: 'assistenza-catelli',
authDomain: 'assistenza-catelli.firebaseapp.com',
storageBucket: 'assistenza-catelli.firebasestorage.app',
measurementId: 'G-HTSSNQJ15P',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBSxpdLDlPnN0xjejlX_5JL19BDeSzKOr8',
appId: '1:872447580790:android:a1d8d57960451f935d9d57',
messagingSenderId: '872447580790',
projectId: 'assistenza-catelli',
storageBucket: 'assistenza-catelli.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyCkjOTW6BlckKIxQdp5TPnHuRfXFoVC3bY',
appId: '1:872447580790:ios:a87d56c718aa61e05d9d57',
messagingSenderId: '872447580790',
projectId: 'assistenza-catelli',
storageBucket: 'assistenza-catelli.firebasestorage.app',
iosBundleId: 'com.catellisrl.flux',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCkjOTW6BlckKIxQdp5TPnHuRfXFoVC3bY',
appId: '1:872447580790:ios:a87d56c718aa61e05d9d57',
messagingSenderId: '872447580790',
projectId: 'assistenza-catelli',
storageBucket: 'assistenza-catelli.firebasestorage.app',
iosBundleId: 'com.catellisrl.flux',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyA5uJhb8ksqKqdEWbMD5ra6JYXIGoaIdIM',
appId: '1:872447580790:web:3b1623eda6abdac75d9d57',
messagingSenderId: '872447580790',
projectId: 'assistenza-catelli',
authDomain: 'assistenza-catelli.firebaseapp.com',
storageBucket: 'assistenza-catelli.firebasestorage.app',
measurementId: 'G-J8LZTQ9NHB',
);
}