-
Notifications
You must be signed in to change notification settings - Fork 20
/
firebase.json
49 lines (49 loc) · 1.37 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
{
"hosting": {
"public": "build/web",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
},
"flutter": {
"platforms": {
"android": {
"default": {
"projectId": "nkust-ap-flutter",
"appId": "1:141403473068:android:05ebdd62590fb72e",
"fileOutput": "android/app/google-services.json"
}
},
"ios": {
"default": {
"projectId": "nkust-ap-flutter",
"appId": "1:141403473068:ios:65aa63de8e144164",
"uploadDebugSymbols": true,
"fileOutput": "ios/Runner/GoogleService-Info.plist"
}
},
"macos": {
"default": {
"projectId": "nkust-ap-flutter",
"appId": "1:141403473068:ios:568f2386591e74bbf34b09",
"uploadDebugSymbols": true,
"fileOutput": "macos/Runner/GoogleService-Info.plist"
}
},
"dart": {
"lib/firebase_options.dart": {
"projectId": "nkust-ap-flutter",
"configurations": {
"android": "1:141403473068:android:05ebdd62590fb72e",
"ios": "1:141403473068:ios:65aa63de8e144164",
"macos": "1:141403473068:ios:568f2386591e74bbf34b09",
"web": "1:141403473068:web:2804dce650446efef34b09",
"windows": "1:141403473068:web:d71d06f2e8822143f34b09"
}
}
}
}
}
}