Deepak Kharpodiya
Deepak Kharpodiya

Reputation: 177

Xcode could not locate the installed application

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

Answers (6)

Sazzad Hissain Khan
Sazzad Hissain Khan

Reputation: 40156

In my case below steps helped

  1. Make sure that you are not trimming any linked framework using lipo command

Upvotes: 0

igniz87
igniz87

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

levous
levous

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.

Project Property Pane Screenshot

Interestingly, I was able to then change it back and it installed, ran and debugged properly. Go figure

Upvotes: 7

Vikesh Prasad
Vikesh Prasad

Reputation: 789

Run you code in debug mode instead release mode. you can change to debug mode from edit scheme.

Upvotes: 2

Deepak Kharpodiya
Deepak Kharpodiya

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

Legion
Legion

Reputation: 791

I think your problem is that the debugger cannot attach to your process after it is launched, try to enable the verbose of the debugger like explained HERE and see if it show some error.

L-

Upvotes: 0

Related Questions