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

后端 未结 2 1588
渐次进展
渐次进展 2020-12-13 10:01

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         


        
2条回答
  •  星月不相逢
    2020-12-13 10:17

    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.

提交回复
热议问题