# APNS Example Files

Ready-to-use `.apns` files for testing push notifications on iOS simulator.

## Usage

1. Run the app on iOS simulator:
   ```bash
   yarn start:ios
   ```

2. Drag and drop any `.apns` file onto the simulator

3. The notification will appear immediately

## Available Examples

- **basic-notification.apns** - Simple test notification with title and body
- **social-spike.apns** - Social spike notification (production format)
- **playlist-placements.apns** - Playlist placements notification with ISRC
- **trending-tracks.apns** - Trending tracks notification

## Customizing

To create your own notification:

1. Copy one of the example files
2. Edit the JSON payload
3. Make sure `Simulator Target Bundle` matches your bundle ID:
   - Prod: `com.theorchard.OrchardGo`
   - QA: `com.theorchard.OrchardGo.qa`
   - Dev: `com.theorchard.OrchardGo.dev`

## More Information

See [Push Notifications Guide](../push-notifications.md) for complete documentation.
