mirror of
https://github.com/libretro/RetroArch
synced 2025-02-22 21:40:40 +00:00
* iOS/tvOS: bundle cores as frameworks as opposed to dylibs * iOS/tvOS: update plist to indicate controller support * iOS/tvOS: living within the sandbox * iOS/tvOS: import content through share sheet * iOS/tvOS: default audio sync off due to crash on background * iOS/tvOS: don't try altkit if there's no reason to * iOS/tvOS: enumerate cores for appstore distribution
23 lines
693 B
XML
23 lines
693 B
XML
<?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>CFBundleExecutable</key>
|
|
<string>%CORE%</string>
|
|
<key>CFBundleName</key>
|
|
<string>%CORE%</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>%IDENTIFIER%</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>1.0.0</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>1.0.0</string>
|
|
<key>MinimumOSVersion</key>
|
|
<string>1.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>FMWK</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
</dict>
|
|
</plist>
|