skip to Main Content

I am facing an issue when I try to run the app on my real iOS device. Please help me solve my problem. I’ve tried many ways to fix it, such as changing the Minimum Deployment Target from 11.0 to 12.0.


Things that need to be considered

I researched this error and found it might be caused by the package_info_plus package. However, I’m not certain. I’ve tried upgrading both Flutter and package_info_plus to their latest versions, but the issue persists.

The Error

enter image description here

Flutter Doctor

enter image description here

Error occurred while running the app in Xcode

enter image description here

2

Answers


  1. Chosen as BEST ANSWER
    1. Upgrade both flutter and connectivity_plus to the latest version
    2. In Xcode, change the minimum deployment target from 11.0 to 12.0 or higher.

    enter image description here

    1. Edit the Podfile located within the ios directory of your Flutter project.

    From This

    enter image description here

    To This

    enter image description here

    1. Go to Xcode > Product > Clean Build Folder.

    enter image description here

    1. Rebuild your project

  2. I will share the solution..please check this linkenter link description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search