at main 1.3 kB view raw
1{ 2 "expo": { 3 "name": "ics-banking-demo-app", 4 "slug": "ics-banking-demo-app", 5 "version": "0.0.1", 6 "orientation": "portrait", 7 "icon": "./assets/images/icon.png", 8 "scheme": "icsbankingdemoapp", 9 "userInterfaceStyle": "automatic", 10 "newArchEnabled": true, 11 "ios": { 12 "supportsTablet": true 13 }, 14 "android": { 15 "adaptiveIcon": { 16 "backgroundColor": "#E6F4FE", 17 "foregroundImage": "./assets/images/android-icon-foreground.png", 18 "backgroundImage": "./assets/images/android-icon-background.png", 19 "monochromeImage": "./assets/images/android-icon-monochrome.png" 20 }, 21 "edgeToEdgeEnabled": true, 22 "predictiveBackGestureEnabled": false 23 }, 24 "web": { 25 "output": "static", 26 "favicon": "./assets/images/favicon.png" 27 }, 28 "plugins": [ 29 "expo-router", 30 [ 31 "expo-splash-screen", 32 { 33 "image": "./assets/images/splash-icon.png", 34 "imageWidth": 200, 35 "resizeMode": "contain", 36 "backgroundColor": "#EFF1F5", 37 "dark": { 38 "backgroundColor": "#1E1E2E" 39 } 40 } 41 ], 42 "expo-secure-store" 43 ], 44 "experiments": { 45 "typedRoutes": true, 46 "reactCompiler": true 47 } 48 } 49}