UnityCoreBluetooth
UnityCoreBluetooth copied to clipboard
Can no longer use makefile commands to build a .framework.
Is there a work around now that Xcode has gotten rid of generate-xcodeproj and now that bitcode generated is disabled?
Your makefile requires deprecated commands/flags and so it gets in the way of building the .framework.
Regards
use the Makefile to generate .o file, and use ar -crv ??.a ??.o to convert it into library file. The .a file work as well as the .framework file.