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-iphonesimulatororDebug-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.

