Page 1 of 1
ApplicationLoader error ITMS-90190
Posted: Wed Jun 10, 2020 4:42 pm
by jmburnod
I've got an error about about "UIUserInterfaceStyle" when i try to upload an .ipa beta file with applicationLoader. (LC 9.6.0 stable, xCode 10.1)
ERROR ITMS-90190: "Invalid Info.plist Key. The key 'UIUserInterfaceStyle' in the Payload/EcrireEnPictos.appInfo.plist file is not valid."
I can see an item "User Interface Style" in Info.plist file with Light as option, nothing else but I dont know what are others option
Advices are welcome
Best regards
Jean-Marc
Re: ApplicationLoader error ITMS-90190
Posted: Wed Jun 10, 2020 5:43 pm
by LiveCode_Panos
Hello Jean-Marc,
It looks like you need to build with Xcode 11+ to get rid of this error:
https://stackoverflow.com/questions/592 ... yle-in-the
Otherwise, you can try to edit the plist and replace:
Code: Select all
<key>UIUserInterfaceStyle</key>
<string>Light</string>
with:
Code: Select all
<key>UIUserInterfaceStyle</key>
<string></string>
And then add the modified plist in the Copy Files section (you might need to change the build/version number as well).
See this lesson for including a custom plist file in your iOS app:
http://lessons.livecode.com/m/4069/l/88 ... stom-plist
Hope this helps.
Kind regards,
Panos
--
Re: ApplicationLoader error ITMS-90190
Posted: Thu Jun 11, 2020 9:43 pm
by jmburnod
Hi Panos,
Thanks for your message.
It seems edit plist way doesn't work as expected
I replaced "light" with "Automatic" (support dark mode = false) but I get the same error.
I also tried to remove the entry as proposed on stackoverflow with the same result
https://stackoverflow.com/questions/592 ... yle-in-the
I'm afraid I need update to mojave and use xCode11+
UIUserInterfaceStyle can only be 'Light', 'Dark', or 'Automatic'
https://developer.apple.com/library/arc ... 09252-SW4)
Kind regards
Jean-Marc