iOS: - Add notification categories with action buttons (complete, view, cancel, etc.) - Handle notification actions in AppDelegate with API calls - Add navigation to specific task from notification tap - Register UNNotificationCategory for each task state Android: - Add NotificationActionReceiver BroadcastReceiver for handling actions - Update MyFirebaseMessagingService to show action buttons - Add deep link handling in MainActivity for task navigation - Register receiver in AndroidManifest.xml Shared: - Add navigateToTaskId parameter to App for cross-platform navigation - Add notification observers in MainTabView/AllTasksView for refresh 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
619 B
Plaintext
23 lines
619 B
Plaintext
{
|
|
"Simulator Target Bundle": "com.tt.casera.CaseraDev",
|
|
"aps": {
|
|
"alert": {
|
|
"title": "Task Cancelled",
|
|
"subtitle": "Test Residence",
|
|
"body": "Paint Fence has been cancelled"
|
|
},
|
|
"sound": "default",
|
|
"badge": 1,
|
|
"category": "TASK_CANCELLED",
|
|
"mutable-content": 1,
|
|
"thread-id": "task-101"
|
|
},
|
|
"task_id": 101,
|
|
"task_name": "Paint Fence",
|
|
"residence_id": 1,
|
|
"residence_name": "Test Residence",
|
|
"notification_type": "task_cancelled",
|
|
"button_types": ["uncancel", "delete"],
|
|
"is_premium": true
|
|
}
|