taxgilde/lib/firebase_options.dart
2026-04-11 10:21:31 +05:30

88 lines
2.9 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:
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: 'AIzaSyCSsZ4AGPvVs1wzpGFe5QL62bvPc4ki6E0',
appId: '1:355745714219:web:45eae1bcbd26aee5815a6e',
messagingSenderId: '355745714219',
projectId: 'taxglide-bd535',
authDomain: 'taxglide-bd535.firebaseapp.com',
storageBucket: 'taxglide-bd535.firebasestorage.app',
measurementId: 'G-2VQB1FS2MV',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyAfTUgCMmhunZci93dqMuoeGvC5r8NpdhM',
appId: '1:600746935622:android:9c98f0c1dd408b19cad147',
messagingSenderId: '600746935622',
projectId: 'auditpro-16b14',
storageBucket: 'auditpro-16b14.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyBnljOambzS0DdbRuDr6tvBBGvK24jEy3E',
appId: '1:600746935622:ios:b8c6feb054815581cad147',
messagingSenderId: '600746935622',
projectId: 'auditpro-16b14',
storageBucket: 'auditpro-16b14.firebasestorage.app',
iosBundleId: 'com.amrithaa.taxglide',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCKZwHVfE0Ih5kSUx-mOD25F2tAFeAL18w',
appId: '1:355745714219:ios:4948c6a82d1b7570815a6e',
messagingSenderId: '355745714219',
projectId: 'taxglide-bd535',
storageBucket: 'taxglide-bd535.firebasestorage.app',
iosBundleId: 'com.amrithaa.taxglide',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyCSsZ4AGPvVs1wzpGFe5QL62bvPc4ki6E0',
appId: '1:355745714219:web:1d46121a7639ff32815a6e',
messagingSenderId: '355745714219',
projectId: 'taxglide-bd535',
authDomain: 'taxglide-bd535.firebaseapp.com',
storageBucket: 'taxglide-bd535.firebasestorage.app',
measurementId: 'G-14E4NG37P2',
);
}