'mediapipe ios framework so large

When I build without --apple_bitcode=embedded, the size of the framework is 15MB.
bazel build --copt=-fembed-bitcode --config=ios_fat mediapipe/examples/ios/selfiesegmentaion:SelfieSegmentation --linkopt="-s"

But if I add --apple_bitcode=embedded, the size is 200MB.
bazel build --copt=-fembed-bitcode --config=ios_arm64 --apple_bitcode=embedded mediapipe/examples/ios/selfiesegmentation:SelfieSegmentation --linkopt="-s"

How to reduce the framework size?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source