ApplicationLoader error ITMS-90190

Getting into LiveCode for iOS? Ask your questions here.

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2718
Joined: Sat Dec 22, 2007 5:35 pm
Location: Genève
Contact:

ApplicationLoader error ITMS-90190

Post by jmburnod » Wed Jun 10, 2020 4:42 pm

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
https://alternatic.ch

LiveCode_Panos
Livecode Staff Member
Livecode Staff Member
Posts: 821
Joined: Fri Feb 06, 2015 4:03 pm

Re: ApplicationLoader error ITMS-90190

Post by LiveCode_Panos » Wed Jun 10, 2020 5:43 pm

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
--

jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2718
Joined: Sat Dec 22, 2007 5:35 pm
Location: Genève
Contact:

Re: ApplicationLoader error ITMS-90190

Post by jmburnod » Thu Jun 11, 2020 9:43 pm

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
https://alternatic.ch

Post Reply

Return to “iOS Deployment”