/ mobile / app.json
app.json
 1  {
 2    "expo": {
 3      "name": "ACDC Forge",
 4      "slug": "acdc-forge-mobile",
 5      "version": "0.1.0",
 6      "orientation": "portrait",
 7      "icon": "./assets/icon.png",
 8      "scheme": "acdcforge",
 9      "userInterfaceStyle": "automatic",
10      "splash": {
11        "image": "./assets/splash.png",
12        "resizeMode": "contain",
13        "backgroundColor": "#1a1a2e"
14      },
15      "assetBundlePatterns": [
16        "**/*"
17      ],
18      "ios": {
19        "supportsTablet": true,
20        "bundleIdentifier": "network.acdc.forge",
21        "infoPlist": {
22          "NSCameraUsageDescription": "Used to scan QR codes for wallet connection and signing"
23        }
24      },
25      "android": {
26        "adaptiveIcon": {
27          "foregroundImage": "./assets/adaptive-icon.png",
28          "backgroundColor": "#1a1a2e"
29        },
30        "package": "network.acdc.forge",
31        "permissions": [
32          "CAMERA"
33        ]
34      },
35      "web": {
36        "bundler": "metro",
37        "output": "static",
38        "favicon": "./assets/favicon.png"
39      },
40      "plugins": [
41        "expo-router",
42        [
43          "expo-notifications",
44          {
45            "icon": "./assets/notification-icon.png",
46            "color": "#6366f1"
47          }
48        ],
49        [
50          "expo-camera",
51          {
52            "cameraPermission": "Allow ACDC Forge to use your camera for QR scanning"
53          }
54        ]
55      ],
56      "experiments": {
57        "typedRoutes": true
58      }
59    }
60  }