xcode gave me this message:
"Could not locate installed application Install claimed to have succeeded, but application could not be found on device. bundleId = (null)"
I just started using pods.
How do i fix this?
xcode gave me this message:
"Could not locate installed application Install claimed to have succeeded, but application could not be found on device. bundleId = (null)"
I just started using pods.
How do i fix this?
I solved this problem doing tipical project clean steps:
I encountered this issue and noticed this in the log:
-[MIBundle pluginKitBundlesSkippingPlatformValidation:withError:]: Ignoring plugin at (path to my app extension) because it doesn't work on this OS version
Updating the Deployment Target version in Build Settings for my extension fixed this.
Very strangely, renaming the root folder of my project to something else did the trick for me. Probably some caching of xcode somewhere with the existing name of the folder was the reason.
I had the same issue when I was working on a share extension. None of the suggested solutions here worked for me.
I cared for debugging and logging. I wasn't able to debug and/or log. I thought at first that the extension wasn't working, but ran a test and verified it was actually executing but for some reason I wasn't able to debug or log.
The best I was able to come up with is to manually attach a debugger, add breakpoints where I wanted to log, edited the breakpoints and added actions to log and continue after evaluation. The following is the steps to do so:
Product/Scheme/Choose-Your-Scheme
Debug/Attach to Process by ID or Name...
. Then type the name of the extension or its bundle id.Automatically continue after evaluating the actions
.Here you can find my unanswered question.