- Fix build issue where bitcode compile was happening for Catalyst target.
- Bitcode compile is now deprecated. The build script disables it. This is in prep to remove all bitcode logic from the script in the next release.
-
Updated build script to allow building for single platform targets: macOS, iOS or tvOS. Specify with
-p <platform>
switch. Default build is for "all" as it has been.# Examples ./build.sh -p macos # Build only for macOS ./build.sh -p ios # Build only for iOS ./build.sh -p tvos # Build only for tvOS ./build.sh # Build for all - macOS, iOS and tvOS # Disable Confirmation (auto-Yes) ./build.sh -y
-
Added examples apps for tvOS and macOS.