KonectarEvents/lib/firebase_options.dart

68 lines
2.3 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.
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:
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for macos - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
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: 'AIzaSyC89YVvfW1VtMyHLSoGkMQVSQ4f0pVsNPg',
appId: '1:259165326883:web:5e1ea22925fd47fec8ab96',
messagingSenderId: '259165326883',
projectId: 'kevents-c4ff5',
authDomain: 'kevents-c4ff5.firebaseapp.com',
storageBucket: 'kevents-c4ff5.appspot.com',
measurementId: 'G-3J4RGEGMMJ',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyC_H76Ukb7kOxIsLLFUQTmVegqwn08iWms',
appId: '1:259165326883:android:bb5e1ebe38aee593c8ab96',
messagingSenderId: '259165326883',
projectId: 'kevents-c4ff5',
storageBucket: 'kevents-c4ff5.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAiasg0wmGlKzYX0FKCimXH2fj5kFcpedQ',
appId: '1:259165326883:ios:7e5a31b957c80644c8ab96',
messagingSenderId: '259165326883',
projectId: 'kevents-c4ff5',
storageBucket: 'kevents-c4ff5.appspot.com',
iosBundleId: 'com.example.konectarEvents',
);
}