forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirebase_options.dart
More file actions
81 lines (76 loc) · 3.13 KB
/
Copy pathfirebase_options.dart
File metadata and controls
81 lines (76 loc) · 3.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
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
77
78
79
80
81
// 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_dev.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:
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 android = FirebaseOptions(
apiKey: 'AIzaSyCz33hNRKsSsWT_Kaxi5Q_9uB7EWGn3Dq0',
appId: '1:1031333818730:android:de181b5b4681b7a1afb513',
messagingSenderId: '1031333818730',
projectId: 'based-hardware-dev',
storageBucket: 'based-hardware-dev.firebasestorage.app',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: 'AIzaSyBK-G7KmEoC72mR10gmQyb2NFBbZyDvcqM',
appId: '1:1031333818730:ios:3bea63d8e4f41dbfafb513',
messagingSenderId: '1031333818730',
projectId: 'based-hardware-dev',
storageBucket: 'based-hardware-dev.firebasestorage.app',
androidClientId: '1031333818730-1cgqp3jc5p8n2rk467pl4t56qc4lnnbr.apps.googleusercontent.com',
iosClientId: '1031333818730-dusn243nct6i5rgfpfkj5mchuj1qnmde.apps.googleusercontent.com',
iosBundleId: 'com.friend-app-with-wearable.ios12.development',
);
static const FirebaseOptions web = FirebaseOptions(
apiKey: 'AIzaSyC1U6S-hp8x_utpVDHtZwwBDxobhzRZI1w',
appId: '1:1031333818730:web:e1b83d713c04245cafb513',
messagingSenderId: '1031333818730',
projectId: 'based-hardware-dev',
authDomain: 'based-hardware-dev.firebaseapp.com',
storageBucket: 'based-hardware-dev.firebasestorage.app',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: 'AIzaSyBK-G7KmEoC72mR10gmQyb2NFBbZyDvcqM',
appId: '1:1031333818730:ios:3bea63d8e4f41dbfafb513',
messagingSenderId: '1031333818730',
projectId: 'based-hardware-dev',
storageBucket: 'based-hardware-dev.firebasestorage.app',
androidClientId: '1031333818730-1cgqp3jc5p8n2rk467pl4t56qc4lnnbr.apps.googleusercontent.com',
iosClientId: '1031333818730-dusn243nct6i5rgfpfkj5mchuj1qnmde.apps.googleusercontent.com',
iosBundleId: 'com.friend-app-with-wearable.ios12.development',
);
}