Weex executes weex build ios error report

weex reported an error when packing ios

weex build ios

the error is as follows:

15:22:35 : Command failed: pod update

15:22:35 : You should config `CodeSign` and `Profile` in the `ios.config.json`

    We suggest that you open the `platform/ios` directory.

    Package your project as a normal ios project!

Baidu said that it needs to configure CodeSign and Profile in the ios.config.json file, but how to configure it?

in addition, where"We suggest that you open the platform/ios directory." What does this mean? what is the operation?

do you guys know anything? wait online!

May.27,2022

this is actually the trap of weex. The front-end students only know weex build ios . However, the premise of ios packaging requires a third-party dependency that configures the pod library, as well as the certificate signature of the Apple developer account. If you want to solve this problem, only
1. Download xcode
2.xcode and select this option
clipboard.png
3. Check to see if cocoapods is installed. Did not install Baidu
4. Terminal cd to the ios project, make sure the podfile file exists in the project directory, and then run pod install or pod update
5. Execute weex build ios

again
Menu