Error itms-90035

后端 未结 10 1072
清酒与你
清酒与你 2020-12-05 05:08

App passes validation

On upload getting error Error itms-90035

\"Invalid Signature. Code object is not signed at all. The bi

10条回答
  •  失恋的感觉
    2020-12-05 05:53

    I had the same problem:

    My project is a client which access APIs using a non-standard Auth protocol. I implemented a library for this protocol as a separated project and imported it as a subproject in the client's one. Both projects used AFNetworking as HTTP Client. Also the client and the library uses other non-shared external libs.

    This schema worked well until Xcode 6.3: all review submissions were accepted in all the stages. After updating to XCode 6.3.1 my submissions to iTunes where rejected because of unsigned .o files of the AFNetworking lib. After iterating over all the answers without success, I decided to remove the subproject. I moved all the library files to the client project and removed the redundant AFNetworking files. After doing this, the app was approved at iTunes Connect :)

    Subproject to project

    It worked as a temporal solution. Probably I'll need to use CocoaPods or Carthage to be able to separate the app and the lib again.

提交回复
热议问题