managarten/apps/zitare/apps/mobile/app.json
Till-JS 75a2527b60 feat(zitare): rename quote project to zitare and add global search
- Rename entire quote project to zitare (German name)
- Add global search page with quote and author search
- Add search to navigation with Cmd/Ctrl+K shortcut
- Add missing icons to PillNavigation (heart, list, compass)
- Update all package names from @quote/* to @zitare/*
- Update env variables from QUOTE_* to ZITARE_*
- Update CLAUDE.md documentation
- Fix layout with flex container structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 20:14:19 +01:00

65 lines
1.5 KiB
JSON

{
"expo": {
"name": "Zitare",
"slug": "quote",
"version": "1.0.0",
"scheme": "zitare",
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-web-browser",
"expo-font",
"@bacons/apple-targets",
[
"expo-document-picker",
{
"iCloudContainerEnvironment": "Production"
}
]
],
"experiments": {
"typedRoutes": true,
"tsconfigPaths": true
},
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.memoro.zitare",
"icon": "./assets/zitare.icon",
"usesIcloudStorage": true,
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSDocumentsFolderUsageDescription": "Diese App benötigt Zugriff auf den Dokumentenordner, um Backups zu speichern und wiederherzustellen.",
"UISupportsDocumentBrowser": true
},
"entitlements": {
"com.apple.security.application-groups": ["group.com.memoro.zitare.widget"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.memoro.zitare"
},
"extra": {
"router": {},
"eas": {
"projectId": "8b630a7d-8b83-4847-81b0-e7922bfba178"
}
}
}
}