Why does xcode archive succeed but create an empty .xcarchive file?

别说谁变了你拦得住时间么 提交于 2019-12-04 09:23:34

I have the solution to my problem and if anyone else is facing the same problem here are the steps i took to fix the problem.

cocos2d library

-Set the skip install to YES for all configurations in your cocos2d library.

-Set the code signing identity to Don't code sign for all configurations. Static libraries are not code signed.

-Update the installation directory to /usr/local/lib.

app library

-Update the installation build products location to /tmp/$(PROJECT_NAME).dst

-Update the installation directory to $(LOCAL_APPS_DIR) (/Applications).

-Update the code signing identity section.

What worked for me was to delete the lines SKIP_INSTALL = YES; from the various *.pbxproj files.

Hat tip to this blog. (No instances of INSTALL_PATH found in our files.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!