-
Notifications
You must be signed in to change notification settings - Fork 1
/
firebase.json
96 lines (96 loc) · 3.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**",
"**/*.js.map"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
],
"cleanUrls": true
},
"flutter": {
"platforms": {
"ios": {
"buildConfigurations": {
"Release-dev": {
"projectId": "space-data-explorer-dev",
"appId": "1:1030109759765:ios:ae1cbbb17367775b6b811c",
"uploadDebugSymbols": true,
"fileOutput": "ios/config/dev/GoogleService-Info.plist"
},
"Release-stag": {
"projectId": "space-data-explorer-stag",
"appId": "1:705512446254:ios:dab87a53736e4ce7b382bf",
"uploadDebugSymbols": true,
"fileOutput": "ios/config/stag/GoogleService-Info.plist"
},
"Release-prod": {
"projectId": "space-data-explorer",
"appId": "1:684786045615:ios:ea013b0c24801f7e8cba5a",
"uploadDebugSymbols": true,
"fileOutput": "ios/config/prod/GoogleService-Info.plist"
}
},
"targets": {},
"default": {}
},
"macos": {
"buildConfigurations": {},
"targets": {},
"default": {}
},
"android": {
"buildConfigurations": {
"src/dev": {
"projectId": "space-data-explorer-dev",
"appId": "1:1030109759765:android:851590128c8b32c76b811c",
"fileOutput": "android/app/src/dev/google-services.json"
},
"src/stag": {
"projectId": "space-data-explorer-stag",
"appId": "1:705512446254:android:c81e2bc51ccc2010b382bf",
"fileOutput": "android/app/src/stag/google-services.json"
},
"src/prod": {
"projectId": "space-data-explorer",
"appId": "1:684786045615:android:eb67f5103c2bdbdb8cba5a",
"fileOutput": "android/app/src/prod/google-services.json"
}
}
},
"dart": {
"lib/config/firebase/options/dev.dart": {
"projectId": "space-data-explorer-dev",
"configurations": {
"android": "1:1030109759765:android:851590128c8b32c76b811c",
"ios": "1:1030109759765:ios:ae1cbbb17367775b6b811c",
"web": "1:1030109759765:web:8c3a343b4a1c6ea46b811c"
}
},
"lib/config/firebase/options/stag.dart": {
"projectId": "space-data-explorer-stag",
"configurations": {
"android": "1:705512446254:android:c81e2bc51ccc2010b382bf",
"ios": "1:705512446254:ios:dab87a53736e4ce7b382bf",
"web": "1:705512446254:web:72aad84a856b7beeb382bf"
}
},
"lib/config/firebase/options/prod.dart": {
"projectId": "space-data-explorer",
"configurations": {
"android": "1:684786045615:android:eb67f5103c2bdbdb8cba5a",
"ios": "1:684786045615:ios:ea013b0c24801f7e8cba5a",
"web": "1:684786045615:web:aede488f170c59978cba5a"
}
}
}
}
}
}