← back to Beverlyhillsvideos App

app.json

70 lines

{
  "expo": {
    "name": "Beverly Hills Videos",
    "slug": "beverlyhillsvideos",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/icon.png",
    "userInterfaceStyle": "light",
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.abrams.beverlyhillsvideos",
      "infoPlist": {
        "NSLocationWhenInUseUsageDescription": "Show nearby Beverly Hills restaurants on the map.",
        "NSUserTrackingUsageDescription": "This lets us measure content performance and show more relevant ads on beverlyhillsvideos.com.",
        "NSAppTransportSecurity": {
          "NSAllowsArbitraryLoads": true
        },
        "ITSAppUsesNonExemptEncryption": false
      }
    },
    "android": {
      "adaptiveIcon": {
        "foregroundImage": "./assets/icon.png",
        "backgroundColor": "#151310"
      },
      "package": "com.abrams.beverlyhillsvideos",
      "versionCode": 1,
      "permissions": [
        "android.permission.ACCESS_FINE_LOCATION",
        "android.permission.ACCESS_COARSE_LOCATION",
        "android.permission.INTERNET"
      ]
    },
    "web": {
      "favicon": "./assets/icon.png",
      "bundler": "metro"
    },
    "plugins": [
      "expo-router",
      "expo-font",
      [
        "expo-tracking-transparency",
        {
          "userTrackingPermission": "This lets us measure content performance and show more relevant ads on beverlyhillsvideos.com."
        }
      ],
      [
        "expo-splash-screen",
        {
          "image": "./assets/splash.png",
          "imageWidth": 200,
          "resizeMode": "contain",
          "backgroundColor": "#151310"
        }
      ]
    ],
    "scheme": "beverlyhillsvideos",
    "extra": {
      "eas": {
        "projectId": "afdd5f24-4fc7-4eeb-a710-b84012e85a7c"
      },
      "router": {}
    },
    "owner": "agentabrams"
  }
}