I made app with React Native and it is almost done.
So tried to publish my application to App Store with Xcode(Application Loader) But it throws error like this.
Maybe this issue is duplicated with Error ITMS-90717: "Invalid App Store Icon",
But It is little bit different with my case Because I made app with React Native. (I used EXPO XDE)
How can I solve this issue?
Thanks.
You need to use a icon image without a transparent background. You can just export as JPG or export again the png whithout the transparent background / alpha
Related
When I submit app on app store I am getting following warning:
following notification form the app-store connect: ITMS-90809:
Deprecated API Usage - Apple will stop accepting submissions of new
apps that use UIWebView APIs starting from April 2020.
I tried implementing solution from following link:
https://github.com/christopherdro/react-native-html-to-pdf/issues/151#issuecomment-569597226
After implementing this solution warning from app-store goes but I am getting these two issues:
Images from local cache are not shown in PDF
Font from local cache are not shown in PDF
Also, I am not facing above issues on simulator. I tried running build in release mode and on various versions of simulator.
Thanks in advance.
I was not able to load images from local cache into PDF.
So I have tried following workaround.
Converted images into base64 using react-native-image-base64
Loaded those base64 images into pdf
As I was facing this issue only with IOS, I wrote platform specific code for IOS only.
Please note:
Converting image to base64 can be heavy operation. If anyone have any
solution. Please suggest.
Has anyone ever seen this before?
Please see attached video from google drive. (was too large to upload as a gif)
https://drive.google.com/file/d/1R_DFPwehqHiLL6AnV-9-gvj5njV_2UiH/view?usp=sharing
The apps being opened are all our apps downloaded from the app store. When opening one after the other and having them run in the background, they are absorbing the first opened app's page. (as seen in the video).
E.g. Spur app gets opened, then johndorys app opens and has Spur app's login page, then panarottis opens and also has Spur's login page.
Only happening with iOS.
All apps are using Ionic 1 and are built from the same code base (so have the same file names etc) but each theme has it's own styles, databases, id's etc.
For anyone who encountered this same issue it was due to the cordova plugin:
cordova-plugin-ionic-webview
Details about issue and fixes can be found here:
https://github.com/ionic-team/cordova-plugin-ionic-webview/issues/165
I just finished developing a Cordova / Phonegapp app. When I test it on iOS simulator it all works fine and quick, but, when testing on device it works only part of it.
My app is a game with the kingdom background and has 8 buttons (8 buildings).
When I click on each building it leads me to a screen representing what it's inside the building, but one of them doesn't work and gets my app frozen.
How can I see fail or crash reports that helps me debug my app on device?
If you provide full path to your file i.e. "file:///Users/.../someDir/some.html" it will work only on simulator running on the same machine where your project is.
I suggest just adding the additional path to the file you want to access i.e. if you are in "/someDir" you will need to provide only "some.html" or if you want to access parent directory just use "../".
As far as debugging Cordova app, I suggest downloading this plugin and using console.log instead of alert.
Hope this helped.
Ok, I found a "spartan" way to debug my app via alert and found that an url wasn't set properly (still don't know why it worked on simulator)
Experts,
Recently I've used PhoneGAP Build service for my iOS App (HTML5 App built using Sencha Touch), and when i submit to app store, they rejected my app with this reason
in particular, we found that on launch and/or content download, your
app stores non user-generated content in iCloud backup directories. To
check how much data your app is storing:
Install and launch your app
Go to Settings > iCloud > Storage & Backup > Manage Storage
If necessary, tap "Show all apps"
Check your app's storage
Is there any solution?
please help
I already have this app published in BB and Android with out any issues.
https://play.google.com/store/apps/details?id=com.pavan.cinetalk
http://appworld.blackberry.com/webstore/content/32189889/
I think PhoneGap Build might be setting BackupWebStorage by default to iCloud, if you set up PhoneGap locally this setting can be changed in the Cordova.plist file see the below link:
http://docs.phonegap.com/en/2.2.0/guide_project-settings_ios_index.md.html
If im not wrong the message is quite clear, they just don't want you to upload to their cloud data that is not generated by the user.
I don't know your app, but sounds like are you backing up things like images or media used by the application itself instead of user's data ¿?
#Brett Bailey: Thanks for your input, finally this parameter worked and iTunes approved my app now
https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=687594497&mt=8
I have a web app designed for use on an iOS device. The web app includes file uploaders, which are meant to allow the user to upload an image from their iOS device or take an image from their camera.
The issue I'm running into is that I want the user to be able to upload PNG images through this interface, as well.
What is happening, though, is that it seems iOS renames the file image.jpg before it is sent to the web app, not honoring the original file extension. This is only an issue because I am trying to preserve transparency in the .png files, and this is lost in the extension renaming.
Any thoughts on how to handle this? Thanks, in advance, for any assistance on this front.
Mobile Safari only allows the uploads of jpeg's at this time. If you try to upload a png it will be (heavily) compressed into the jpeg format and then uploaded to the server.
The only way we have been about to get around this is by creating a native app for iOS and uploading the image through the Cocoa-Touch API's.
I've filed a Bug report with apple for this issue. Bug ID: 14494395