89 lines
3.0 KiB
Dart
89 lines
3.0 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: 'AIzaSyA7btPSkb67UCL-FESmGoTW8AdJkMcMpJk',
|
|
appId: '1:762583493199:web:de60b94e42c221c39ed83a',
|
|
messagingSenderId: '762583493199',
|
|
projectId: 'mobile-team-57386',
|
|
authDomain: 'mobile-team-57386.firebaseapp.com',
|
|
storageBucket: 'mobile-team-57386.firebasestorage.app',
|
|
measurementId: 'G-LM6L67V7QB',
|
|
);
|
|
|
|
static const FirebaseOptions android = FirebaseOptions(
|
|
apiKey: 'AIzaSyC1bN-FszTsSck6C7n9W9XFnn4oYzqG4io',
|
|
appId: '1:762583493199:android:c97a0f9d070594f59ed83a',
|
|
messagingSenderId: '762583493199',
|
|
projectId: 'mobile-team-57386',
|
|
storageBucket: 'mobile-team-57386.firebasestorage.app',
|
|
);
|
|
|
|
static const FirebaseOptions ios = FirebaseOptions(
|
|
apiKey: 'AIzaSyBtD0-rHirJj_3GEr2K34xgpv65q32JfDk',
|
|
appId: '1:762583493199:ios:7df8be813f3722a29ed83a',
|
|
messagingSenderId: '762583493199',
|
|
projectId: 'mobile-team-57386',
|
|
storageBucket: 'mobile-team-57386.firebasestorage.app',
|
|
iosBundleId: 'com.example.mobileTeam',
|
|
);
|
|
|
|
static const FirebaseOptions macos = FirebaseOptions(
|
|
apiKey: 'AIzaSyBtD0-rHirJj_3GEr2K34xgpv65q32JfDk',
|
|
appId: '1:762583493199:ios:7df8be813f3722a29ed83a',
|
|
messagingSenderId: '762583493199',
|
|
projectId: 'mobile-team-57386',
|
|
storageBucket: 'mobile-team-57386.firebasestorage.app',
|
|
iosBundleId: 'com.example.mobileTeam',
|
|
);
|
|
|
|
static const FirebaseOptions windows = FirebaseOptions(
|
|
apiKey: 'AIzaSyA7btPSkb67UCL-FESmGoTW8AdJkMcMpJk',
|
|
appId: '1:762583493199:web:c57e8c755b7210ef9ed83a',
|
|
messagingSenderId: '762583493199',
|
|
projectId: 'mobile-team-57386',
|
|
authDomain: 'mobile-team-57386.firebaseapp.com',
|
|
storageBucket: 'mobile-team-57386.firebasestorage.app',
|
|
measurementId: 'G-W5B2FF6888',
|
|
);
|
|
}
|