Flutter Podfile and Pods folders not created in ios directory

前端 未结 5 813
日久生厌
日久生厌 2021-02-06 06:22

Created a new flutter project from Android Studio using the wizard.

Newly created project folder does not have any of the Pods folders or podfile in the ios directory.

5条回答
  •  半阙折子戏
    2021-02-06 06:39

    Here is what I usually do:

    1. go into ios folder
    2. delete the PodFile.lock file
    3. rm -rf Pods
    4. pod cache clean --all
    5. pod deintegrate
    6. pod setup
    7. pod install

    You may also want to do

    pod repo update

提交回复
热议问题