简体   繁体   中英

Combined framework simulator/device binary Xcode 7.3

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:

在此处输入图片说明

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.

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

"Native merge":

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM