78 lines
2.6 KiB
Plaintext
78 lines
2.6 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>Yr Crystals</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>$(EXECUTABLE_NAME)</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
<key>CFBundleName</key>
|
|
<string>$(PRODUCT_NAME)</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1</string>
|
|
<key>LSRequiresIPhoneOS</key>
|
|
<true/>
|
|
<key>UIRequiresFullScreen</key>
|
|
<true/>
|
|
<key>UILaunchStoryboardName</key>
|
|
<string>LaunchScreen</string>
|
|
<key>UIRequiredDeviceCapabilities</key>
|
|
<array>
|
|
<string>arm64</string>
|
|
</array>
|
|
<key>UISupportedInterfaceOrientations</key>
|
|
<array>
|
|
<string>UIInterfaceOrientationPortrait</string>
|
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
</array>
|
|
|
|
<!-- Permissions -->
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>This app requires audio access to visualize music.</string>
|
|
<key>NSAppleMusicUsageDescription</key>
|
|
<string>This app requires access to your music library to play tracks.</string>
|
|
<key>NSPhotoLibraryUsageDescription</key>
|
|
<string>This app requires access to the photo library to load album art.</string>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>This app requires camera access for visualizer input.</string>
|
|
|
|
<!-- File Access -->
|
|
<key>UIFileSharingEnabled</key>
|
|
<true/>
|
|
<key>LSSupportsOpeningDocumentsInPlace</key>
|
|
<true/>
|
|
|
|
<!-- Document Types -->
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeName</key>
|
|
<string>Audio</string>
|
|
<key>LSHandlerRank</key>
|
|
<string>Alternate</string>
|
|
<key>LSItemContentTypes</key>
|
|
<array>
|
|
<string>public.audio</string>
|
|
<string>public.mp3</string>
|
|
<string>public.mpeg-4-audio</string>
|
|
<string>public.folder</string>
|
|
<string>public.directory</string>
|
|
<string>public.content</string>
|
|
<string>public.data</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
|
|
<key>UIBackgroundModes</key>
|
|
<array>
|
|
<string>audio</string>
|
|
</array>
|
|
</dict>
|
|
</plist> |