mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-18 00:54:19 +00:00
48 lines
1.6 KiB
Text
48 lines
1.6 KiB
Text
<?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>
|
|
<dict>
|
|
<key>LSRequiresIPhoneOS</key>
|
|
<true/>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>This is an audio app which requires audio input. If you do not have a USB audio interface connected it will use the microphone.</string>
|
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
<false/>
|
|
<key>CFBundleExecutable</key>
|
|
<string>${EXECUTABLE_NAME}</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>com.roli.juce.pluginhost</string>
|
|
<key>CFBundleName</key>
|
|
<string>AudioPluginHost</string>
|
|
<key>CFBundleDisplayName</key>
|
|
<string>AudioPluginHost</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1.0.0</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>ROLI Ltd.</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
<key>UIRequiresFullScreen</key>
|
|
<true/>
|
|
<key>UIStatusBarHidden</key>
|
|
<true/>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>audio</string>
|
|
<string>bluetooth-central</string>
|
|
</array>
|
|
</dict>
|
|
</plist>
|