XCode 15 - zoomcml.framework is invalid. The Info.plist file is missing the required key CFBundleVersion, CFBundleShortVersionString

@donte.zoom I was able to release the app by manually adding the missing keys. I have followed these steps.

  1. Generate the archive file using XCode 15
  2. Convert the binary zoomcml.framework/Info.plist to xml format using below command
cd /Users/.../Library/Developer/Xcode/Archives/2023-10-26/MyApp.xcarchive/Products/Applications/MyApp.app/Frameworks/zoomcml.framework/

plutil -convert xml1 Info.plist
  1. Added the missing keys and save the file.
<key>CFBundleShortVersionString</key>
	<string>1.9.0</string>
	<key>CFBundleVersion</key>
	<string>50</string>
  1. Upload the archive using XCode. Then it got uploaded successfully.

Are you planning to add these keys and release the updated SDK anytime soon?