- Add OAuth 2.0 PKCE authentication for Spotify Web API - Create SpotifyNowPlayingMonitor for polling current track - Add Settings tab with music source toggle (Apple Music/Spotify) - Store tokens securely in Keychain - Display current track on Glass as NOW_PLAYING card 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
768 B
Plaintext
28 lines
768 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<string>sh.nym.iris.spotify-auth</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>iris-spotify-auth</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>MKDirectionsApplicationSupportedModes</key>
|
|
<array/>
|
|
<key>NSCalendarsFullAccessUsageDescription</key>
|
|
<string>Allow full calendar access to show upcoming events on Glass.</string>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>bluetooth-peripheral</string>
|
|
<string>bluetooth-central</string>
|
|
<string>location</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|