Yes, you can embed the library in your existing ipa, and then reconcile it with the enterprise certificate. Below is a brief report on how I do this
Browse the executable in MachOView and find the address of the load commands. Then, using the address, change the hexadecimal code and increase the number of load commands by 1 (assuming that I am inserting one library), I also have to increase the offset of the command.
There are tools available for entering the library into hexadecimal code, with which you can now embed the library in a new offset, which you refer to in the load command.
Also see dyci-main in git, which is a dynamic library implementation project.
Tamil
source share