/ app.json
app.json
 1  {
 2    "expo": {
 3      "name": "manganess",
 4      "slug": "manganess",
 5      "version": "1.2",
 6      "orientation": "portrait",
 7      "icon": "./assets/images/icon.png",
 8      "scheme": "com.iroan.manganess",
 9      "userInterfaceStyle": "automatic",
10      "newArchEnabled": true,
11      "ios": {
12        "supportsTablet": true
13      },
14      "android": {
15        "adaptiveIcon": {
16          "foregroundImage": "./assets/images/adaptive-icon.png",
17          "backgroundColor": "#121212"
18        },
19        "package": "com.iroan.manganess"
20      },
21      "plugins": [
22        "expo-router",
23        [
24          "expo-splash-screen",
25          {
26            "image": "./assets/images/splash.png",
27            "imageWidth": 200,
28            "resizeMode": "contain",
29            "backgroundColor": "#121212"
30          }
31        ],
32        "expo-font",
33        "expo-web-browser"
34      ],
35      "experiments": {
36        "typedRoutes": true
37      },
38      "extra": {
39        "eas": {
40          "projectId": "e39fdc53-b1f4-4839-8e48-07a5e789d5eb"
41        }
42      },
43      "owner": "iroan",
44      "runtimeVersion": {
45        "policy": "sdkVersion"
46      },
47      "updates": {
48        "enabled": true,
49        "fallbackToCacheTimeout": 0,
50        "url": "https://u.expo.dev/e39fdc53-b1f4-4839-8e48-07a5e789d5eb",
51        "checkAutomatically": "ON_ERROR_RECOVERY"
52      }
53    }
54  }