-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathfirebase.json
37 lines (37 loc) · 1.07 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
{
"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": "flutter-ui-challenges-hgl",
"appId": "1:322047224635:android:16ac7d8a6518a95b",
"fileOutput": "android/app/google-services.json"
}
},
"ios": {
"default": {
"projectId": "flutter-ui-challenges-hgl",
"appId": "1:322047224635:ios:a8d0e327085d15edd2e51e",
"uploadDebugSymbols": true,
"fileOutput": "ios/Runner/GoogleService-Info.plist"
}
},
"macos": {
"default": {
"projectId": "flutter-ui-challenges-hgl",
"appId": "1:322047224635:ios:a8d0e327085d15edd2e51e",
"uploadDebugSymbols": true,
"fileOutput": "macos/Runner/GoogleService-Info.plist"
}
}
}
}
}