Declare XSAppIconAssets in the app manifest so actool receives --app-icon and the bundle carries CFBundleIconName, and always pass both Xcode version placeholders to the ReplayKit extension so an empty build number cannot drop CFBundleVersion and fail installd.
23 lines
1.7 KiB
Plaintext
23 lines
1.7 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>CFBundleDisplayName</key><string>VoiceCat</string>
|
|
<key>CFBundleIdentifier</key><string>me.iamtalon.voicecat</string>
|
|
<key>XSAppIconAssets</key><string>Assets.xcassets/AppIcon.appiconset</string>
|
|
<key>LSRequiresIPhoneOS</key><true/>
|
|
<key>NSMicrophoneUsageDescription</key><string>VoiceCat needs microphone access to transmit your voice in channels.</string>
|
|
<key>UIBackgroundModes</key><array><string>audio</string><string>screen-capture</string></array>
|
|
<key>UIRequiresFullScreen</key><false/>
|
|
<key>UIDeviceFamily</key><array><integer>1</integer><integer>2</integer></array>
|
|
<key>UILaunchScreen</key><dict/>
|
|
<key>UISupportedInterfaceOrientations</key><array><string>UIInterfaceOrientationPortrait</string><string>UIInterfaceOrientationLandscapeLeft</string><string>UIInterfaceOrientationLandscapeRight</string></array>
|
|
<key>UISupportedInterfaceOrientations~ipad</key><array><string>UIInterfaceOrientationPortrait</string><string>UIInterfaceOrientationPortraitUpsideDown</string><string>UIInterfaceOrientationLandscapeLeft</string><string>UIInterfaceOrientationLandscapeRight</string></array>
|
|
<key>UIApplicationSceneManifest</key><dict>
|
|
<key>UIApplicationSupportsMultipleScenes</key><false/>
|
|
<key>UISceneConfigurations</key><dict><key>UIWindowSceneSessionRoleApplication</key><array><dict>
|
|
<key>UISceneConfigurationName</key><string>Default Configuration</string>
|
|
<key>UISceneDelegateClassName</key><string>VoiceCat.iOS.SceneDelegate</string>
|
|
</dict></array></dict>
|
|
</dict>
|
|
</dict></plist>
|