Tomoki Kobayashi
Tomoki Kobayashi
I just tried to build XCFramework using this branch and encountered the same problem as this URL. > xcframework does not contain internal frameworks > https://stackoverflow.com/questions/58805812/xcframework-does-not-contain-internal-frameworks I was able to...
When I built the app by incorporating the XCFramework built with https://github.com/CocoaPods/Rome/pull/90#issuecomment-782580619 into an Xcode project, I encountered the same problem as the following URL. > Xcode 11 XCFramework "......
Finally, not adding the `BUILD_LIBRARY_FOR_DISTRIBUTION` flag and also adding the `-allow-internal-distribution` option when running `-create-xcframework` worked. cocoapods-rome/post_install.rb#L70 ```ruby #args = %W(-create-xcframework -output #{output}) args = %W(-create-xcframework -allow-internal-distribution -output #{output}) ```