Application coverage file routing is not copied to the simulator

Since upgrading to Xcode 6, I see this warning every time I run the application on a simulator. My application has a routing application coverage file, and I want it to be copied to the simulator, but this does not happen. It seems to be a mistake. Is there a workaround?

Routing App Coverage file error

+6
source share
1 answer

I had a similar error a while ago, because Xcode can use a precompiled version of the application.

Here's how I solved it:

In xCode, make sure your application does not work in the simulator (click the stop button), then Build menu > Clean target or SHIFT-CMD-K .

Also, clear the contents in the Derived Data ~/Library/Developer/Xcode/DerivedData/ .

Hope this works for you.

0
source

Source: https://habr.com/ru/post/978695/


All Articles