A mobile app view of atmoquest
1.9 kB
69 lines
1{
2 "expo": {
3 "name": "atmo.quest",
4 "slug": "atmo-quest",
5 "version": "1.0.0",
6 "orientation": "portrait",
7 "icon": "./assets/images/icon.png",
8 "scheme": "atmoquest",
9 "userInterfaceStyle": "dark",
10 "splash": {
11 "image": "./assets/images/splash-icon.png",
12 "resizeMode": "contain",
13 "backgroundColor": "#1e1e2e"
14 },
15 "ios": {
16 "supportsTablet": false,
17 "bundleIdentifier": "quest.atmo.app",
18 "infoPlist": {
19 "NSCameraUsageDescription": "atmo.quest uses the camera to scan QR codes for event check-ins and connections.",
20 "NSLocationWhenInUseUsageDescription": "atmo.quest uses your location to verify you are near an event venue."
21 }
22 },
23 "android": {
24 "package": "quest.atmo.app",
25 "adaptiveIcon": {
26 "backgroundColor": "#1e1e2e",
27 "foregroundImage": "./assets/images/android-icon-foreground.png",
28 "backgroundImage": "./assets/images/android-icon-background.png",
29 "monochromeImage": "./assets/images/android-icon-monochrome.png"
30 },
31 "permissions": [
32 "CAMERA",
33 "ACCESS_FINE_LOCATION",
34 "RECEIVE_BOOT_COMPLETED",
35 "VIBRATE"
36 ]
37 },
38 "web": {
39 "bundler": "metro",
40 "output": "static",
41 "favicon": "./assets/images/favicon.png"
42 },
43 "plugins": [
44 "expo-router",
45 "expo-secure-store",
46 [
47 "expo-camera",
48 {
49 "cameraPermission": "atmo.quest needs camera access to scan QR codes for event check-ins and connections."
50 }
51 ],
52 [
53 "expo-notifications",
54 {
55 "icon": "./assets/images/notification-icon.png",
56 "color": "#fab387"
57 }
58 ]
59 ],
60 "experiments": {
61 "typedRoutes": true
62 },
63 "extra": {
64 "eas": {
65 "projectId": ""
66 }
67 }
68 }
69}