Member
Last active 4 months ago
I suddenly get a warning from Apple when uploading an iOS app via Application Loader saying:
"We identified one or more issues with a recent delivery for your app, "XXXXX".Your delivery was successful, but you may wish to correct the following issues in your next delivery:
ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/documentation/uikit/uiwebview for more information."
It did not happen yesterday - I published from the new update of Pubcoder 3.6.2 (1028) using XPUB 2. 0 - and I haven't changed any settings.
What can be wrong?
The issue has been fixed in today's update of PubCoder - Version 3.6.0 (1024).
I just tried to upload another app that was approved by "Application Loader" just 5 days ago.
It gives the same error message - so, I guess it really is a new Apple requirement?
So, currently it's not possible to have iOS apps made with PubCoder approved.
When uploading an iOS app from "Application Loader" I get the following error message:
ERROR ITMS-90783: "Missing bundle display name. The Info.plist key CFBundleDisplayName is missing
or has an empty value in the bundle with bundle identifier 'com.ballyland.app2giverotor'."
From what I've found it seems to be a new Apple requirement - and there doesn't seem to be an option to enter a "bundle display name" in PubCoder?
I have a new app in Apple's App Store. The language of the app is Dutch.
But in the App Store it says "Language: Dutch, English, Italian".
Is there an option to set only "Dutch" to be displayed as language?
Hello Angelo, Thanks a lot - yes, local storage now works perfectly.
It seems that Local Storage is not working with XPUB 2.0/WKWebView - published as an iOS app.
It does work as long as an app is open - saving changes of values when going between pages.
But it doesn't read the saved values after closing an app and reopen it.
I am not using Session storage but storage without any expiration.
It has always worked before XPUB and WebView were updated.
Has anyone got it to work?
here's my code that used to work:
//------------------------------------------------------------------------
if (localStorage.getItem("myVarName") === null) {
localStorage.myVarName = "true";
mySavedValue = localStorage.myVarName;
}else{
mySavedValue = localStorage.myVarName;
}
//------------------------------------------------------------------------
At App Store Connect it says:
"As a reminder, starting March 27, 2019 all new apps and app updates for iPhone or iPad, including universal apps, will need to be built with the iOS 12.1 SDK and support iPhone XS Max or the 12.9-inch iPad Pro (3rd generation)."
When will there be an update of Pubcoder for these new requrements?
I have tried out a procedure that seems to work.
I have a Pubcoder iOS app in English that is going to be made into a Spanish version.
The app includes a huge amount of mp3 files with speech.
I could of course edit each and every sound object but I came to think there maybe could be an easier way.
This is what I did:
Then I could open the file in Pubcoder and all the English had become Spanish in one go.
What I would like to know is if there are any drawbacks or pitfalls doing this 'trick'?
Thanks
John
Thanks, Angelo.