How to generate iPhone simulator build or .zip file for submit in Facebook for review in iOS

前端 未结 7 573
慢半拍i
慢半拍i 2021-02-01 08:03

I submit my_app.ipa file to Facebook but its rejected by Facebook. And send me this message \"Notes from our review team iPhone Can you please resubmit for review providing a si

7条回答
  •  鱼传尺愫
    2021-02-01 08:39

    1. Step: Run App in Simulator Run your app in your Xcode iPhone 5 simulator. This automatically creates a simulator build in Xcode's DerivedData cache.

    2. Step: ZIP Simulator Build Zip the simulator build via the following command:

    ditto -ck --sequesterRsrc --keepParent ls -1 -d -t ~/Library/Developer/Xcode/DerivedData/*/Build/Products/*-iphonesimulator/*.app | head -n 1 path/to/YourApp.zip

    1. Step: Verify Build You can verify the simulator build by using the ios-sim utility Command-line App Launcher for Simulator. Once installed run:

    ios-sim launch /path/to/your-app.app

提交回复
热议问题