diff options
Diffstat (limited to 'app.json')
| -rw-r--r-- | app.json | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/app.json b/app.json new file mode 100644 index 0000000..3e60a1f --- /dev/null +++ b/app.json @@ -0,0 +1,69 @@ +{ + "expo": { + "name": "Buddy for Parents", + "slug": "buddy-for-parents", + "version": "1.0.0", + "orientation": "portrait", + "icon": "./assets/images/icon.png", + "scheme": "buddy-for-parents", + "userInterfaceStyle": "dark", + "newArchEnabled": true, + "ios": { + "supportsTablet": true, + "bundleIdentifier": "sh.lajo.buddyforparents", + "infoPlist": { + "ITSAppUsesNonExemptEncryption": false + } + }, + "extra": { + "API_BASE_URL": "https://buddy-dev.justzvan.click", + "router": {}, + "eas": { + "projectId": "69fef292-00c4-4045-93ec-3bd05d7e8dac" + } + }, + "android": { + "adaptiveIcon": { + "backgroundColor": "#020202", + "foregroundImage": "./assets/images/ic_launcher_foreground.png", + "backgroundImage": "./assets/images/ic_launcher_background.png", + "monochromeImage": "./assets/images/ic_launcher_monochrome.png" + }, + "edgeToEdgeEnabled": true, + "predictiveBackGestureEnabled": false, + "package": "sh.lajo.buddyforparents", + "googleServicesFile": "google-services.json" + }, + "web": { + "output": "static", + "favicon": "./assets/images/favicon.png" + }, + "plugins": [ + "expo-router", + [ + "expo-splash-screen", + { + "image": "./assets/images/splash-icon.png", + "imageWidth": 200, + "resizeMode": "contain", + "backgroundColor": "#020202", + "dark": { + "backgroundColor": "#020202" + } + } + ], + "expo-localization", + [ + "expo-notifications", + { + "icon": "./assets/images/ic_launcher_foreground.png", + "color": "#020202" + } + ] + ], + "experiments": { + "typedRoutes": true, + "reactCompiler": true + } + } +} |