-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathfirebase_options.dart
More file actions
36 lines (34 loc) · 1.13 KB
/
firebase_options.dart
File metadata and controls
36 lines (34 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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, kDebugMode, kIsWeb;
/// 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;
}
throw UnsupportedError(
'DefaultFirebaseOptions have not been configured for $defaultTargetPlatform - '
'you can reconfigure this by running the FlutterFire CLI again.',
);
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyCydY22c_eDHDXWsRe_14-kzGNGSO986jI',
appId: '1:138342796561:web:22e80ba7c9119d66d950b0',
messagingSenderId: '138342796561',
projectId: 'n26-full-stack-dart',
authDomain: 'n26-full-stack-dart.firebaseapp.com',
storageBucket: 'n26-full-stack-dart.firebasestorage.app',
);
}