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
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.
XCode: 11.3.1 Cocoapods: 1.9.1
None the previous solutions worked for me.
This should be related to the pod info.plist
file setting. You might want to select Pods directory in the navigation panel of XCode and then set the info list files for each pod framework.
If there's anything goes wrong with this, there will be a button to choose the info.plist
file.
Just click on that button and navigate to the bottom of the Pods directory from popup file dialog, and select your project’s pods-info.plist
file.
It will automatically assign the correct identity for that pods framework like you see in the above image. This will solve the problem.
Make Target membership tic-mark
Or Uninstall your pod file and reinstall pod file
I also meet this problem. The reason why I meet this error is that I changed the bundle Id only the general of Menu of the project. You must also change it Test and UiTest too. After I change them, the problem is solved.