Sherlock / app.json
app.json
Raw
{
  "expo": {
    "name": "Sherlock",
    "slug": "Sherlock",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "scheme": "sherlock",
    "userInterfaceStyle": "automatic",
    "splash": {
      "image": "./assets/images/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "bundleIdentifier": "com.sherlock.app",
      "supportsTablet": true
    },
    // GO BACK AND SECURE API KEY
    "android": {
      "package": "com.sherlock.app",
      "config": {
        "googleMaps": {
          "apiKey": "AIzaSyD7FUp--so9KOUG-1x9vQtrOMFq3X1mmdI"
        }
      },
      "adaptiveIcon": {
        "foregroundImage": "./assets/images/adaptive-icon.png",
        "backgroundColor": "#ffffff"
      }
    },
    "web": {
      "bundler": "metro",
      "output": "static",
      "favicon": "./assets/images/favicon.png"
    },
    "plugins": [
      "expo-router"
    ],
    "experiments": {
      "typedRoutes": true
    }
  }
}