Can't export app with Zoom SDK for Mac App Store distribution

Description
On attempt to export app archive for Mac App Store distribution I receive the following error:

Couldn’t find platform family in Info.plist CFBundleSupportedPlatforms or Mach-O LC_VERSION_MIN for libcrypto.1.0.0.dylib

Which version?
v4.6.15798.0403

Screenshots

Additional context
I did some digging, and apparently libssl and libcrypto don’t have LC_VERSION_MIN Mach-O header. Corresponding libraries from zoom.us app do have this header and export works fine when I use them.

Thank you!

Hi dmytro,

Thanks for the post. The solution from the following link could be helpful: https://stackoverflow.com/questions/59288315/couldnt-find-platform-family-in-info-plist-cfbundlesupportedplatforms-or-mach-o, this is for iOS, but it is similar for Mac OS.

You may try the following:

  1. In info.plist, add the following:

<key>CFBundleSupportedPlatforms</key>
 <array>
 <string>MacOSX</string>
</array>
  1. Delete the directory ~/Library/Developer/Xcode/DerivedData/ModuleCache and try again.

Hope this helps. Thanks!

Hi @carson.zoom,

Alas, the proposed solution didn’t help. I’m getting the same error.

Please take a look at https://forums.developer.apple.com/thread/61730.

Thanks!

Hi @dmytro,

Thanks for the reply. As this error is related to the Xcode build configuration, it could be affected by different settings or factors(Not actually related to SDK).

Please have a try with the solution in the following link and see if it helps:

Thanks!