I've had issues with bitcode since I imported your framework. I've seen this issue mentioned multiple times online about your lib without any resolution, so I came up with the fix myself. The original error is thrown every time we try to build a target that has bitcode enabled. ->
bitcode bundle could not be generated because '.../DTCoreText.o' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '.../DTCoreText.o' for architecture arm64
This error is specific to DTCoreText, but since DTCoreText has the dependency of DTFoundation, both have to be able to be built with bitcode. The flags to enable bitcode are missing in both frameworks. I also have a PR for DTCoreText when this one is gonna be merged.
Hi there,
I've had issues with bitcode since I imported your framework. I've seen this issue mentioned multiple times online about your lib without any resolution, so I came up with the fix myself. The original error is thrown every time we try to build a target that has bitcode enabled. ->
bitcode bundle could not be generated because '.../DTCoreText.o' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '.../DTCoreText.o' for architecture arm64
This error is specific to DTCoreText, but since DTCoreText has the dependency of DTFoundation, both have to be able to be built with bitcode. The flags to enable bitcode are missing in both frameworks. I also have a PR for DTCoreText when this one is gonna be merged.