framework 与 xcframework 存在区别

1. Xcode 12 之前

1
lipo -create /Users/.../Debug-iphonesimulator/XXXX/XXXX.framework/XXXX  /Users/.../Release-iphoneos/XXXX/XXXX.framework/XXXX -output /Users/.../Desktop/XXXX/XXXX

2. Xcode 12 之后

1
2
3
4
5
xcrun xcodebuild -create-xcframework \
-framework /Users/.../Debug-iphonesimulator/XXXX/XXXX.framework \
-framework /Users/.../Release-iphoneos/XXXX/XXXX.framework \
-output /Users/.../Desktop/XXXX.xcframework