- Add new logo and splash screen assets with multiple resolutions - Implement paginated label selection with TabView - Create UnifiedLabelChip component for consistent label display - Add manual tag entry functionality with validation - Refactor BookmarkLabelsViewModel with dependency injection - Update launch screen configuration and color sets - Add new localization strings for improved UX - Improve ShareBookmarkView with better label selection UI
34 lines
739 B
Plaintext
34 lines
739 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>readeck.url-handler</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>readeck</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsLocalNetworking</key>
|
|
<true/>
|
|
</dict>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>audio</string>
|
|
</array>
|
|
<key>UILaunchScreen</key>
|
|
<dict>
|
|
<key>UIColorName</key>
|
|
<string>splashBackground</string>
|
|
<key>UIImageName</key>
|
|
<string>splash</string>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|