-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
107 lines (107 loc) · 2.76 KB
/
app.json
File metadata and controls
107 lines (107 loc) · 2.76 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"expo": {
"name": "Waiter",
"slug": "Waiter",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"buildNumber": "1.0.0",
"supportsTablet": true,
"bundleIdentifier": "com.thatninjaguyspeaks.Waiter",
"infoPlist": {
"UIFileSharingEnabled": true,
"LSSupportsOpeningDocumentsInPlace": true,
"UIBackgroundModes": ["remote-notification"],
"NSCameraUsageDescription": "This app uses the camera to scan QR codes.",
"NSPhotoLibraryUsageDescription": "This app requires access to the photo library to upload images.",
"NSMicrophoneUsageDescription": "This app uses the microphone for voice commands."
},
"googleServicesFile": "./GoogleService-Info.plist"
},
"android": {
"versionCode": 1,
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#ffffff"
},
"googleServicesFile": "./google-services.json",
"package": "com.thatninjaguyspeaks.Waiter",
"permissions": [
"INTERNET",
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE",
"RECEIVE_BOOT_COMPLETED",
"VIBRATE",
"WAKE_LOCK",
"POST_NOTIFICATIONS"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/icon.png",
"name": "Waiter",
"shortName": "Waiter",
"description": "A CRM for managing your restaurant",
"build": {
"babel": {
"include": ["@firebase/messaging"]
}
}
},
"plugins": [
"./android-manifest.plugin.js",
"expo-router",
"@react-native-firebase/app",
"@react-native-firebase/auth",
[
"@react-native-firebase/messaging",
{
"auto-initialization": true,
"messaging_android_notification_color": "#FFFFFF"
}
],
[
"expo-notifications",
{
"icon": "./assets/images/icon.png",
"color": "#ffffff"
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
},
"ios": {
"useFrameworks": "static"
}
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "7c51ccc6-3f2f-4647-bd67-09fadab888a3"
}
}
}
}