“This app could not be installed at this time” CFBundleIdentifier error

前端 未结 4 2128
灰色年华
灰色年华 2020-12-22 04:02

I encountered the \"This app could not be installed at this time\" error. I have tried several methods such as reloading the simulator, deleting the app in the simulator and

4条回答
  •  时光说笑
    2020-12-22 04:43

    I have faced same issue. After long research find below solution. Please follow it, I am sure it will work for you.

    Solution: 1

    Erase All content and settings.

    Clean your project

    Solution: 2

    Changing the CFBundleShortVersionString in InfoPlist.strings to match the one in info.plist fixed this for me. I had to use the simulator's "Erase All Content and Settings" after making this change.

    Solution: 3

    I deleted pods from project and installed it again and it surprisingly works fine.

    For remove pod file:

    pod deintegrate
    

    For install pod:

    pod install
    

    Then run again your project.

提交回复
热议问题