TKK_E32230499/lib/firebase_options.dart

80 lines
2.8 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:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for ios - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
case TargetPlatform.macOS:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for macos - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
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 android = FirebaseOptions(
apiKey: 'AIzaSyDc01KmGZYUWY6A27yRSlSWlzrirRgXKUM',
appId: '1:968686817464:android:e30fbf296143da3f3a644d',
messagingSenderId: '968686817464',
projectId: 'tape-ketan-70347',
databaseURL: 'https://tape-ketan-70347-default-rtdb.firebaseio.com',
storageBucket: 'tape-ketan-70347.firebasestorage.app',
);
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyAUX0D9v6SNiFOsFppFjG7pFt0NzrqE0tg',
appId: '1:968686817464:web:9ddf9e7a980280333a644d',
messagingSenderId: '968686817464',
projectId: 'tape-ketan-70347',
authDomain: 'tape-ketan-70347.firebaseapp.com',
databaseURL: 'https://tape-ketan-70347-default-rtdb.firebaseio.com',
storageBucket: 'tape-ketan-70347.firebasestorage.app',
measurementId: 'G-9C51PKW0K6',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyAUX0D9v6SNiFOsFppFjG7pFt0NzrqE0tg',
appId: '1:968686817464:web:cb19922df0732e103a644d',
messagingSenderId: '968686817464',
projectId: 'tape-ketan-70347',
authDomain: 'tape-ketan-70347.firebaseapp.com',
databaseURL: 'https://tape-ketan-70347-default-rtdb.firebaseio.com',
storageBucket: 'tape-ketan-70347.firebasestorage.app',
measurementId: 'G-KWH1JDHCV3',
);
}