app.json raw

   1  {
   2    "expo": {
   3      "name": "Warden",
   4      "slug": "warden",
   5      "version": "1.3.5",
   6      "orientation": "portrait",
   7      "icon": "./assets/images/icon.png",
   8      "scheme": "warden",
   9      "userInterfaceStyle": "automatic",
  10      "newArchEnabled": true,
  11      "ios": {
  12        "supportsTablet": true,
  13        "bundleIdentifier": "org.vikingware.webwarden"
  14      },
  15      "android": {
  16        "adaptiveIcon": {
  17          "backgroundColor": "#1a2e1a",
  18          "foregroundImage": "./assets/images/android-icon-foreground.png",
  19          "backgroundImage": "./assets/images/android-icon-background.png",
  20          "monochromeImage": "./assets/images/android-icon-monochrome.png"
  21        },
  22        "edgeToEdgeEnabled": true,
  23        "predictiveBackGestureEnabled": false,
  24        "blockedPermissions": [],
  25        "intentFilters": [
  26          {
  27            "action": "VIEW",
  28            "autoVerify": false,
  29            "data": [
  30              {
  31                "scheme": "http"
  32              },
  33              {
  34                "scheme": "https"
  35              }
  36            ],
  37            "category": [
  38              "BROWSABLE",
  39              "DEFAULT",
  40              "APP_BROWSER"
  41            ]
  42          },
  43          {
  44            "action": "SEND",
  45            "data": [
  46              {
  47                "mimeType": "text/plain"
  48              }
  49            ],
  50            "category": [
  51              "DEFAULT"
  52            ]
  53          }
  54        ],
  55        "queries": {
  56          "intent": [
  57            {
  58              "action": "VIEW",
  59              "data": {
  60                "scheme": "https"
  61              }
  62            }
  63          ],
  64          "package": [
  65            "com.android.chrome",
  66            "com.brave.browser",
  67            "app.vanadium.browser",
  68            "org.mozilla.firefox",
  69            "org.mozilla.firefox_beta",
  70            "org.mozilla.fenix",
  71            "org.mozilla.focus",
  72            "org.ironfoxoss.ironfox",
  73            "org.torproject.torbrowser",
  74            "com.duckduckgo.mobile.android",
  75            "io.github.jqssun.helium",
  76            "org.mozilla.felice"
  77          ]
  78        },
  79        "package": "org.vikingware.webwarden"
  80      },
  81      "plugins": [
  82        [
  83          "expo-splash-screen",
  84          {
  85            "image": "./assets/images/splash-icon.png",
  86            "imageWidth": 1,
  87            "resizeMode": "contain",
  88            "backgroundColor": "#0a1a12",
  89            "dark": {
  90              "backgroundColor": "#0a1a12"
  91            }
  92          }
  93        ],
  94        "./plugins/with-release-no-internet"
  95      ],
  96      "extra": {}
  97    }
  98  }
  99