-
Notifications
You must be signed in to change notification settings - Fork 0
/
firebase.json
59 lines (59 loc) · 2.04 KB
/
firebase.json
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
{
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "/privacy-policy",
"destination": "/privacy-policy.html"
},
{
"source": "**",
"destination": "/index.html"
}
]
},
"flutter": {
"platforms": {
"android": {
"default": {
"projectId": "epic-sax-gandalf-infinite",
"appId": "1:130822511337:android:92fc13918490c4d56b2e78",
"fileOutput": "android/app/google-services.json"
}
},
"ios": {
"default": {
"projectId": "epic-sax-gandalf-infinite",
"appId": "1:130822511337:ios:41a9b18241ef65946b2e78",
"uploadDebugSymbols": true,
"fileOutput": "ios/Runner/GoogleService-Info.plist"
}
},
"macos": {
"default": {
"projectId": "epic-sax-gandalf-infinite",
"appId": "1:130822511337:ios:41a9b18241ef65946b2e78",
"uploadDebugSymbols": true,
"fileOutput": "macos/Runner/GoogleService-Info.plist"
}
},
"dart": {
"lib/firebase_options.dart": {
"projectId": "epic-sax-gandalf-infinite",
"configurations": {
"android": "1:130822511337:android:92fc13918490c4d56b2e78",
"ios": "1:130822511337:ios:41a9b18241ef65946b2e78",
"macos": "1:130822511337:ios:41a9b18241ef65946b2e78",
"web": "1:130822511337:web:2d437ca1530cb0ba6b2e78",
"windows": "1:130822511337:web:2ffab151968b9eb36b2e78"
}
}
}
}
}
}