appstore-approval

How to submit only app details after metadata rejection from apple to avoid adding the app to review clock

五迷三道 提交于 2019-12-03 10:03:34
Can we resubmit the app after metadata rejection due to invalid demo account details to avoid adding back into the review queue and restart the review clock. As Per this Link An Easy Mistake with iTunes Connect & Metadata Rejections suggested "Do not click “Submit for Review” after getting a Metadata Rejection" to avoid review process. But apple has suggested To provide demo account information: Log in to iTunes Connect Click on “My Apps” Select your app Scroll down to “App Review Information” Provide information in “Demo Account” and/or “Notes” as appropriate Click Save Click Submit for

Application failed codesign verification?

天大地大妈咪最大 提交于 2019-12-03 07:30:42
问题 I'm having problems submitting my iphone application. I saw some similar questions, but I didn't find an answer. When I archive the project and click validate, I get the error message "Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate." I'm assuming I did something wrong in the codesigning section. I followed a youtube tutorial that had me download all the certificates and set up the codesigning section, but I don't

iOS/iPhone: in-app purchase sandbox broken while app in “rejected” state?

元气小坏坏 提交于 2019-12-03 06:45:31
(See MAIN THRUST below to skip to the main thrust of my question.) My iOS app was rejected in the Apple review process for a minor reason that was easy to fix. However, I wanted to give the new build a once-over testing, including retesting our in-app purchase (there is only a single purchasable item in the app). And now the app crashes when doing the initial retrieval of the product information. It never crashed in this way before, and the code hasn't changed since we successfully tested the in-app purchase in sandbox mode many times. (In fact, no code changed at all between the initially

iPhone - App Rejected again, HTTP Live Streaming 64kbps baseline feed

独自空忆成欢 提交于 2019-12-03 05:53:10
问题 Thank you for submitting APPNAME_HERE. We have reviewed your application and have determined that it cannot be posted to the App Store at this time because it is not using a baseline stream of 64 kbps for the HTTP Live Streaming protocol to broadcast streaming video. HTTP Live Streaming is required when streaming video feeds over the cellular network, in order to have an optimal user experience and utilize cellular best practices. This protocol automatically determines bandwidth available to

Routing App Coverage File [closed]

可紊 提交于 2019-12-03 04:09:40
I've recently submitted my game to the App Store. It has recently been approved and is "Processing for the App Store". When I click on my application, it says "Routing App Coverage File". Just curious on what this means exactly? The "Routing App Coverage File" is a GeoJSON file which describes the coverage area for a public transit routing application (to be used with iOS 6 Maps). The iTunes Connect Developers Guide says: Routing app coverage files are .geojson files which specify the geographic regions supported by your app. The file can have only one MultiPolygon element. MultiPolygon

Speeding-up the Apple review process for iOS application for patches and hotfixes [closed]

夙愿已清 提交于 2019-12-03 02:54:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Is there any way to upload a quick-fix for my application, approved by Apple some days ago? Or should I wait for another 2 weeks for re-review again? 回答1: If you need to push a critical bug-fix to AppStore (either Mac or iOS), you may ask Apple for an Expedited Review Process . You may do so here: Request an

What does Unrestricted Web Access mean in iTunes Connect

女生的网名这么多〃 提交于 2019-12-03 02:42:09
问题 When you are submitting your app to Apple app store, there is a section named "Rating" where you should rate your content based on the chart and identify how frequently the content appears. There is one option called "Unrestricted web access" which there are no further details available about this on the Internet nor iTunes Connect Developer Guide. All you can find everywhere is: Select Yes if your app allows users to navigate and view web pages, such as with an embedded browser. What does

Apple is killing white labeled iOS apps! What should we do?

落爺英雄遲暮 提交于 2019-12-03 02:39:21
Many companies rely on white labeled apps to provide their services in a more personal way to their customers. With a few adjustments we can set a logo and a splash screen and even pre-configure our app to our customer needs which has a great impact in their end user experience. Without this my users would need to use the app skipping a lot of configuration steps that in a generic app wouldn't be possible to skip. According to apple: "Apps created from a commercialized template or app generation service will be rejected" Now what can we do to to work around this? Today I saw 4 apps being

App got rejected because only using Facebook as login option?

假如想象 提交于 2019-12-03 01:44:27
My app is a photo-sharing app based on Facebook, and Facebook is the only option for register and login, but my app got rejected with following message: 17.2: Apps that require users to share personal information, such as email address and date of birth, in order to function will be rejected: We found that your app uses Facebook login for authentication purposes only - but does not include any account-based features offered by that site. This is not in compliance with the App Store Review Guidelines. It would be appropriate to modify your app to include account-based features of that social

How to customize UIAlertView? Will Apple approve it?

我们两清 提交于 2019-12-03 00:32:10
I am using a custom UIAlertView with UITextField to get password from the user. I have been told that this custom view may cause my App to get reject by Apple; is that correct? If so, what is the appropriate replacement for my custom control? You can add a textfield to your UIAlertView UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"title" message:@"msg" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil]; UITextField *txtField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 45.0, 260.0, 25.0)]; [alertView addSubview:txtField]; [alertView show]; [alertView