1

I'm using the rwa_deep_ar package for the DeepAR feature in the Flutter project. When I install the pod in MacOS, I see the following error.

enter image description here

I want to know how to fix this error and how to use the DeepAR for iOS in Flutter.

Pawara Siriwardhane
  • 1,873
  • 10
  • 26
  • 38
Snow Star
  • 76
  • 1
  • 5

3 Answers3

0
  1. Kill the app
  2. Run: flutter clean
  3. Run: flutter pub get
  4. Run: cd ios && pod install --repo-update
Nazarii Kahaniak
  • 461
  • 3
  • 11
0
  1. Podfile change platform :ios, '13.0' target set

  2. Delete the folder and file from the project iOS folder

    • .symlinks folder
    • Pods folder
    • Podfile.lock file
  3. flutter clean

  4. flutter pub get

  5. cd ios

  6. pod install --repo-update

P.J.Radadiya
  • 1,493
  • 1
  • 12
  • 21
0

I think you need to download and install cocoapods on MacOS.

sudo gem install cocoapods sudo nano export PATH=$PATH:/YOUR PATH pod init open Podfile pod install

Snow Star
  • 76
  • 1
  • 5