mirror of
https://github.com/yattee/yattee.git
synced 2026-05-12 18:35:05 +00:00
Use a tvOS-specific Info.plist to exclude iOS CFBundleAlternateIcons keys that caused ITMS-90471 rejections, and drop empty image slots from the tvOS brand asset catalog.
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
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>ITSAppUsesNonExemptEncryption</key>
|
|
<false/>
|
|
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
|
<array>
|
|
<string>stream.yattee.app.feedRefresh</string>
|
|
</array>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Editor</string>
|
|
<key>CFBundleURLName</key>
|
|
<string>stream.yattee.app</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<string>yattee</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
<key>NSAppTransportSecurity</key>
|
|
<dict>
|
|
<key>NSAllowsArbitraryLoads</key>
|
|
<true/>
|
|
</dict>
|
|
<key>NSBonjourServices</key>
|
|
<array>
|
|
<string>_yattee._tcp</string>
|
|
<string>_webdav._tcp</string>
|
|
<string>_webdavs._tcp</string>
|
|
<string>_smb._tcp</string>
|
|
</array>
|
|
<key>NSUserActivityTypes</key>
|
|
<array>
|
|
<string>stream.yattee.app.activity</string>
|
|
</array>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>audio</string>
|
|
<string>remote-notification</string>
|
|
<string>fetch</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|