As stated in the title, the result of apple_static_xcframework rule contains all the bundles of all dependencies of the packaged framework, even if the dependencies are passed as avoid_deps.
This seems unexpected from the user perspective and leads to:
excessive size of resulting XCFramework
duplicated bundles when dependencies are packed into XCFramework independently
ios_application will throw Multiple files would be placed at "..." in the bundle, which is not allowed. check input file error
As stated in the title, the result of
apple_static_xcframework
rule contains all the bundles of all dependencies of the packaged framework, even if the dependencies are passed asavoid_deps
.This seems unexpected from the user perspective and leads to:
ios_application
will throwMultiple files would be placed at "..." in the bundle, which is not allowed. check input file
error