5bcfafcbaf
- Mobile: add push notification and calendar sync services with full test suite (calendar, eventStore, notifications, screens) - Mobile: add EAS build config and Jest setup - Web: add API proxy, update useDestinationStation/useJourneys hooks, add middleware tests - Web: update next.config and rebuild - Agent: add Gemma4-based agent loop (agent_base, ttl_agent, ts_agent) - Docs: add privacy policy, post-MVP plan, and aider rules
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"expo": {
|
|
"name": "Time To Leave",
|
|
"slug": "timetoleave",
|
|
"version": "1.0.0",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/icon.png",
|
|
"userInterfaceStyle": "light",
|
|
"newArchEnabled": true,
|
|
"splash": {
|
|
"image": "./assets/splash-icon.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#007AFF"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.timetoleave.app",
|
|
"infoPlist": {
|
|
"NSLocationWhenInUseUsageDescription": "This app uses your location to find nearby stations and calculate travel times.",
|
|
"NSUserNotificationUsageDescription": "This app uses notifications to remind you about events."
|
|
}
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#007AFF"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"predictiveBackGestureEnabled": false,
|
|
"package": "com.timetoleave.app",
|
|
"permissions": [
|
|
"android.permission.ACCESS_FINE_LOCATION",
|
|
"android.permission.POST_NOTIFICATIONS",
|
|
"android.permission.INTERNET"
|
|
]
|
|
},
|
|
"web": {
|
|
"favicon": "./assets/favicon.png"
|
|
},
|
|
"plugins": [
|
|
"expo-location",
|
|
"expo-notifications"
|
|
],
|
|
"privacyPolicyUrl": "https://timetoleave.app/privacy-policy"
|
|
}
|
|
}
|