Reputation: 177
In XCode 11 when I trying to run the app xcode showing installation successful but a alert appears with message "Could not locate installed application Install claimed to have succeeded, but application could not be found on device. bundleId = com.xxx.xxx "
I tried all solution given here and here
But these solutions didn't work for me. Please help me regarding this.
Upvotes: 14
Views: 3893
Reputation: 40156
In my case below steps helped
lipo command
Upvotes: 0
Reputation: 194
i my case, i go to Product -> Schema -> Edit Schema
go to Build Tab on the left, uncheck everything on {projectName}Tests
Close
then run on device Again.
the other solution that work with me is https://stackoverflow.com/a/58689652/4289609
Upvotes: 0
Reputation: 932
This popped up for me. I was able too solve the problem by selecting "Automatically manage signing" on the Signing and Capabilities tab of the Project's application target configuration panels.
Interestingly, I was able to then change it back and it installed, ran and debugged properly. Go figure
Upvotes: 7
Reputation: 789
Run you code in debug mode instead release mode. you can change to debug mode from edit scheme.
Upvotes: 2
Reputation: 177
The only solution I've found is by simply changing the bundle identifier. But I could not find what is wrong with the previous identifier while I used it in xcode 10 as well and it was working fine.
Upvotes: 2