appstore-approval

App rejected- Apple wants me to add additional native iOS functionality

守給你的承諾、 提交于 2019-12-07 15:47:26
My recent iPad/iPhone Apps have been rejected. Apple's reason : It would be appropriate to add additional native iOS functionality to the application in order to enhance the user’s experience. Specifically, features that enable the user to interact with the app rather than just consume information are recommended. My App is like an album of cartoons of a specific theme (by a sports cartoonist). It has an initial thumbnail view, supports landscape/portrait modes, swipe for next/previous cartoons, Timed hiding/unhide of status bars/navigation bars etc.,. However Bookmarks,zoom , saving etc are

App rejected for storing database in Documents directory

我的未来我决定 提交于 2019-12-07 10:29:36
问题 My app was recently rejected from the app store for storing data in the Documents directory. I had moved it there because with the latest change, the db must now be writeable - it's no longer read-only. In researching the solution, I've read that it's actually preferable to use NSLibraryDirectory. Is this so, and more importantly, will that address Apple's concerns? Their complaint is that the app lets the user download to much content (it doesn't let the user download any unless you count

Amazon AppStore Submission Failed: “Sensitive information like password is echoed in clear text without encryption”

為{幸葍}努か 提交于 2019-12-07 10:08:26
问题 I've submitted an application to the amazon app store, and it was rejected with the following details: Sensitive information like password is echoed in clear text without encryption Obviously, not a great thing ... however I've reviewed the application code. The user's password is stored in the private preferences as an MD5 hash (it goes straight from textbox to md5 hash to prefs, and is not logged or written anywhere as plaintext. When we post requests to our web API (via http), we post a

App rejected because asking user registration (Guideline 5.1.1)

女生的网名这么多〃 提交于 2019-12-07 08:39:06
问题 My app is a catalog of ebook-like content. Some of which are free to read, and some other are paid. I need to ask for user email / password to be able to retain the information of which content was successfuly completed, or until which chapter it was completed so the user can have his information synced accross all platforms. However I got this rejection message : Apps cannot require user registration prior to allowing access to app content and features that are not associated specifically to

iOS auto updates

怎甘沉沦 提交于 2019-12-07 05:15:20
问题 It takes 10 days to submit update and wait it to be reviewed. One of my farm games I that I installed on iPad shows "downloading updates" when I run it. Is it good idea to implement updates in iOS app like that? Is it permitted by Apple? Do you know apps doing that except farm apps? I am thinking about PhoneGap. I could download new version of phonegap extract it and run. So I will add features directly dially or even push different functionality to different clients. It is also a way to

iOS app is rejected because of user buy subscription without IAP [closed]

谁都会走 提交于 2019-12-07 02:09:07
问题 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 3 years ago . I build a tool app on iOS platform. I want create three level for users. basic, pro and premium. each level provide different functions. So user need pay for pro and premium subscription plan. the difference between level is pro user can create more document than basic user. The thing is I don't want use IAP, I

What kind of downloaded code violates App Store Review Guideline?

混江龙づ霸主 提交于 2019-12-07 01:50:39
问题 App Store Review Guidelines says: "Apps that download code in any way or form will be rejected." I'd like to make an app using Challenge-Response for authentication. The app has a set of basic algorithms such as SHA-1, SHA-256, MD5, DES, AES and so on. The challenge server makes contains an array of the algorithms' name with random arrangement and a string names A. Client uses the algorithms and the sequence that challenge indicates to manipulate string A, and returns it to the server as the

Should I resubmit the binary after replying to a metadata rejection?

倾然丶 夕夏残阳落幕 提交于 2019-12-06 16:38:20
问题 I have received a metadata rejection for my application requesting some clarification about my application Information Needed Your iTunes Connect settings indicate that your app serves third-party advertisements. However, we were unable to locate ads in your app. Please reply to this message to provide the steps for locating third-party ads in your app. When we hear back from you, we will continue the review. *** Additionally, we have begun the review of your app but aren't able to continue

iPhone app rejection 17.2: app requires users sign in with their Facebook accounts

我是研究僧i 提交于 2019-12-06 11:18:18
I followed the login instructions for my native iOS app here https://developers.facebook.com/docs/mobile/ios/build/ I have everything facebook in the AppDelegate in application:didFinishLaunchingWithOptions: facebook = [[Facebook alloc] initWithAppId:@"xyzabc" andDelegate:self]; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; if ([defaults objectForKey:@"FBAccessTokenKey"] && [defaults objectForKey:@"FBExpirationDateKey"]) { facebook.accessToken = [defaults objectForKey:@"FBAccessTokenKey"]; facebook.expirationDate = [defaults objectForKey:@"FBExpirationDateKey"]; } if (!

Binary rejected because of Non-public API usage (google analytic iOSv2)

霸气de小男生 提交于 2019-12-06 06:26:33
问题 I recently had an app rejected because of reason - Non-public API usage: Apps are not permitted to access the UDID and must not use the uniqueIdentifier method of UIDevice. Please update your apps and servers to associate users with the Vendor or Advertising identifiers introduced in iOS 6. I have used google analytics iOS v2 in this app, is it causing this problem? 回答1: My app was rejected due to the new UDID polices too. In my case, I'm using AdMob and the steps to fix this problem was: