-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfirebase_options.dart
76 lines (72 loc) · 2.69 KB
/
firebase_options.dart
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// File generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members
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:
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: 'AIzaSyD6HAv79b-5byeLFV7PfW_4sJqfEqApbLc',
appId: '1:223326884779:web:221305d7225efcb3cd38ee',
messagingSenderId: '223326884779',
projectId: 'flutter-snap-todo',
authDomain: 'flutter-snap-todo.firebaseapp.com',
storageBucket: 'flutter-snap-todo.appspot.com',
measurementId: 'G-MREZN3S9VW',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: 'AIzaSyBhdTM7D5EbZRmXq5qNL235nuTvwrF3rlc',
appId: '1:223326884779:android:5cffd3c11d66e88ecd38ee',
messagingSenderId: '223326884779',
projectId: 'flutter-snap-todo',
storageBucket: 'flutter-snap-todo.appspot.com',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyAB9GEY52OQuv2yMMn__OvJzoMK54zpsbI',
appId: '1:223326884779:ios:285adcc0abf27307cd38ee',
messagingSenderId: '223326884779',
projectId: 'flutter-snap-todo',
storageBucket: 'flutter-snap-todo.appspot.com',
iosClientId: '223326884779-90i5ls5265006ov4f4g5uj8ejhfif5dg.apps.googleusercontent.com',
iosBundleId: 'com.example.snapTodo',
);
}