Flutter Podfile and Pods folders not created in ios directory

前端 未结 5 761
日久生厌
日久生厌 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:58

    flutter:
          plugin:
            platforms:
              ios:
                pluginClass: AppDelegate
    

    You need to add the above lines to the pubspec.yaml and then the pub would automatically generate the Podfile inside the ios folder.

提交回复
热议问题