proxybuy-flutter/lib/firebase_options.dart

93 lines
3.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.
///
/// 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: 'AIzaSyCeRwWv-Pep_624hoUVIw-SSlicDVRHGiY',
appId: '1:81202355575:web:0cf25bf19cb4a8a1239572',
messagingSenderId: '81202355575',
projectId: 'lba-app-c4a7e',
authDomain: 'lba-app-c4a7e.firebaseapp.com',
storageBucket: 'lba-app-c4a7e.firebasestorage.app',
measurementId: 'G-8D14ETTE9T',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyB22NqmwB_PpI1s37xbc2ABJ5_COEHeC8g',
appId: '1:81202355575:android:6d4c7db49b6120f8239572',
messagingSenderId: '81202355575',
projectId: 'lba-app-c4a7e',
storageBucket: 'lba-app-c4a7e.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyCJsr8Baaw0CbucB0zrB_kWv_7fcBNRwIk',
appId: '1:81202355575:ios:d40682afd403fc5b239572',
messagingSenderId: '81202355575',
projectId: 'lba-app-c4a7e',
storageBucket: 'lba-app-c4a7e.firebasestorage.app',
androidClientId: '81202355575-fchlrrp4fu3irskh6co1ep8i04oi3adr.apps.googleusercontent.com',
iosClientId: '81202355575-hcgc97f7glhbpa8h7iqq4d57efcsrtqo.apps.googleusercontent.com',
iosBundleId: 'com.example.lba',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyCJsr8Baaw0CbucB0zrB_kWv_7fcBNRwIk',
appId: '1:81202355575:ios:d40682afd403fc5b239572',
messagingSenderId: '81202355575',
projectId: 'lba-app-c4a7e',
storageBucket: 'lba-app-c4a7e.firebasestorage.app',
androidClientId: '81202355575-fchlrrp4fu3irskh6co1ep8i04oi3adr.apps.googleusercontent.com',
iosClientId: '81202355575-hcgc97f7glhbpa8h7iqq4d57efcsrtqo.apps.googleusercontent.com',
iosBundleId: 'com.example.lba',
);
static const FirebaseOptions windows = FirebaseOptions(
apiKey: 'AIzaSyCeRwWv-Pep_624hoUVIw-SSlicDVRHGiY',
appId: '1:81202355575:web:03aeac4a6dbda4d3239572',
messagingSenderId: '81202355575',
projectId: 'lba-app-c4a7e',
authDomain: 'lba-app-c4a7e.firebaseapp.com',
storageBucket: 'lba-app-c4a7e.firebasestorage.app',
measurementId: 'G-2EZ542PHK0',
);
}