Combined framework simulator/device binary Xcode 7

2020-02-15 06:33发布

I followed carefully THIS POST for this

In summary you have to use lipo to connect each device and simulator build

Using:

lipo -create -output "MyFrameworkName" "Debug-iphonesimulator/MyFrameworkName.framework/MyFrameworkName" "Debug-iphoneos/MyFrameworkName.framework/MyFrameworkName"

I am choosing any framework Debug-iphonesimulator or Debug-iphoneos as a base to add the file that resulted from lipo.

Example:

enter image description here

The problem is that no matter which of the 2 use as a base (Debug-iphonesimulator or Debug-iphoneos). If the base is the simulator when I add it to the parent project does not run on the device. and vice versa

It seems that lipo was not doing a good job uniting the 2 files, or missing some files more to join.

I have searched the web and apparently no more steps to accomplish this.

1条回答
等我变得足够好
2楼-- · 2020-02-15 07:22

I found the answer, just need drag and drop the file and using the native merge option displayed.

"Native merge":

enter image description here

查看更多
登录 后发表回答