frontend-app/app.json
2025-10-01 11:24:59 +02:00

80 lines
2.2 KiB
JSON

{
"expo": {
"name": "my-drawer-app",
"slug": "my-drawer-app",
"version": "1.0.0",
"projectId": "361036ad-f0cf-41d1-ba27-d3f39f6019dc",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "mydrawerapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.anonymous.mydrawerapp",
"buildNumber": "1.0.0",
"infoPlist": {
"UIBackgroundModes": [
"remote-notification"
],
"NSUserTrackingUsageDescription": "This identifier will be used to deliver personalized notifications.",
"NSUserNotificationUsageDescription": "This app uses notifications to keep you informed."
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#E6F4FE",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png",
"monochromeImage": "./assets/images/android-icon-monochrome.png"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"package": "com.anonymous.mydrawerapp",
"versionCode": 1,
"permissions": [
"NOTIFICATIONS"
],
"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": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
}
],
[
"expo-notifications",
{
"icon": "./assets/images/notification-icon.png",
"color": "#000000",
"androidMode": "default",
"androidCollapsedTitle": "New notification"
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "630e211b-f7de-4a82-a863-5962a593f5aa"
}
}
}
}