fix: allow uploads to appstore connect (#13)

Change dylib to framework
This commit is contained in:
khcrysalis
2025-06-08 09:49:13 -07:00
committed by GitHub
parent cebe417bd7
commit c5d7097fc1
3 changed files with 71 additions and 23 deletions

22
swift/Info.plist Normal file
View File

@@ -0,0 +1,22 @@
<?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>plist</string>
<key>CFBundleIdentifier</key>
<string>com.github.jkcoxson.plist</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>plist</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.7.0</string>
<key>MinimumOSVersion</key>
<string>12.0</string>
<key>CFBundleVersion</key>
<string>2.7.0</string>
</dict>
</plist>

View File

@@ -0,0 +1,6 @@
framework module plist {
umbrella header "plist.h"
export *
module * { export * }
}