Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
516 views
in Technique[技术] by (71.8m points)

ios - XCode getting "target specifies product type 'com.apple.product-type.bundle.unit-test', but there's no such product type for the 'iphoneos' platform"

When running my project in XCode, my tests gives this error:

target specifies product type 'com.apple.product-type.bundle.unit-test', but there's no such product type for the 'iphoneos' platform

It happened after a couple of XCode updates. Does anyone know how to fix this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It looks like Xcode 6 changed the product identifier for ocunit test bundles from com.apple.product-type.bundle to com.apple.product-type.bundle.ocunit-test.

Edit $(ProjectName).xcodeproj/project.pbxproj and replace any instance of com.apple.product-type.bundle.ocunit-test with com.apple.product-type.bundle. For now you will need to do this any time you open your project with Xcode 6 and then want to open it in Xcode 5.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...