1

trying to validate iOS app but got ERROR ITMS-90680: "The binary you uploaded was invalid.”

had tried adding run script at build phase but no luck, any ideas?

enter image description here

2 Answers2

0

Check , you've already uploaded another app version to the store, now you'll need to create a new version and upload that.

Rashed
  • 2,349
  • 11
  • 26
  • check, no other app with higher version on itunesconnect but still got error –  May 23 '18 at 09:33
  • @LeoChen did u specify the build number and the version number from xcode? Are u using application loader for the upload? – Rashed May 23 '18 at 09:44
  • i had tried using both application loader and xcode to upload the ipa, but both returned same error. the build numbers are all set to 1 but i change the version number with higher number, still error. –  May 23 '18 at 09:55
  • @Mayank Baiswar yes i did, it was because the invalid import of prop-types, I update to the latest react-native version and change the import PropTypes from 'prop-types' instead of react (of all components and sub-components). good luck! –  Sep 11 '18 at 01:48
-2

have you build your application for release. To do that the command is

tns build ios --release --for-device

More info about the build command (and any other command) can be seen via

tns build ios --help

If this does not resolve your case, please verify that you have gone through the steps described in publishing for iOS and also send us the content of your package.json file.

JSDBroughton
  • 3,966
  • 4
  • 32
  • 52