5

I have run into this error trying to upload my latest build to Testflight, I cant put my finger on what I might have done differently compared to earlier versions of my app. Can anyone point me in the right direction? this is the error I get :

Invalid IPA: failed to parse the info.plist (exception was: 'ascii' codec can't 
decode byte 0xc3 in position 336: ordinal not in range(128))
Imane Fateh
  • 2,418
  • 3
  • 19
  • 23
Mathias Åberg
  • 99
  • 1
  • 10
  • I get the exact same thing. Seeing that this question is relatively young, and not much is on the web about it before now I might be tempted to think it's a testflight issue. – Nailer Aug 16 '13 at 11:13
  • Last night TestFlight was presenting me with errors regarding the TestFlight app_token - and I'm not even using the TestFlight SDK. I hit 'ignore and continue' and it worked fine... just a thought. I push up to multiple builds to TF daily and have never encountered this. – Brooks Hanes Aug 16 '13 at 15:08
  • You were right Nailer. I mailed TestFlight support and after a few hours they had fixed it. – Mathias Åberg Aug 17 '13 at 05:51
  • Yep, e-mailed them too and got the same answer. Now it works fine :) Hooray for good customer support! – Nailer Aug 19 '13 at 11:12

1 Answers1

-2

I got it from this Question.

In architecture settings. select target and project build settings all of your build settings must be set with armv 7.

In Target -> Build Settings:

Architectures = Standard(armv7, armv7s) - $(ARCHS_STANDARD_32_BIT) Valid Architectures = armv7 armv7s

EDITED :

Read This documentation, this may be helpful in your case:

Community
  • 1
  • 1
iPatel
  • 46,010
  • 16
  • 115
  • 137
  • thanks - unfortunately, as far as I can see, my settings match the above settings – Mathias Åberg Aug 16 '13 at 09:11
  • 1
    That question is totally different from this one - the error messages have almost nothing in common except for mentioning the word 'plist'. And if it was the same, you should have voted to close as duplicate instead of copy pasted another answer. – Carl Veazey Aug 16 '13 at 15:17