appstore-approval

Apple rejected my application because of Flurry [closed]

我的梦境 提交于 2019-12-04 15:41:37
My application is rejected today by apple. Their note is this: During our extended review we found that the app does in fact send the user's MAC address via the Flurry SDK. Sending the user's hardware identifier is not appropriate, and requires this feature to be removed to be considered for PLA 3.3.9 compliance. Please revise the binary to not send the MAC address, then resubmit for review. So I added Flurry's Privacy Policy url ( https://info.yahoo.com/privacy/us/yahoo/ ) into my application privacy policy url in iTunes connect. And then they replied this: Thank you for your patience during

Demo account in itunesconnect in sms-based app

佐手、 提交于 2019-12-04 15:13:49
I can't find any info about my problem - I've written an app, which is sms-based(it means that user has to request and receive sms from my server, and can't continue until enter sms-code and some other things based on sms within app). So, my problem is rejecting from appstore review due to "no demo data", but how i can get it if even "demo" depends on real device? Apple will test your app on a real device. When they run the app, they need to be able to get past your registration process. So you need to have your system setup so when the reviewer runs your submitted app they can perform what

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

馋奶兔 提交于 2019-12-04 11:01:45
问题 (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

How to customize UIAlertView? Will Apple approve it?

纵饮孤独 提交于 2019-12-04 08:41:19
问题 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? 回答1: 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]

How to Minimize App Store Approval Time

喜夏-厌秋 提交于 2019-12-04 08:18:02
问题 What are some things and techniques I can do to minimize the time it takes for my apps/updates to be approved for the App Store? Do smaller updates generally take less time, and do paid applications take longer than free ones? What about the size of the binary? 回答1: In my experience, everything takes exactly the same amount of time. You sit in the queue for 6 days, then they review it for an hour or so (much less for updates), and you're either in, or rejected. If you are rejected, it will

Why is SenTestingKit causing my app to crash?

拟墨画扇 提交于 2019-12-04 07:44:21
I've created a map-based app for the iPhone, and recently submitted it to the store. I had no trouble running the app on the device or simulator. However, the store rejected it because it crashed on launch. The crash logs complain that the SenTestingKit framework wasn't found: Date/Time: 2012-02-21 19:02:26.048 -0800 OS Version: iPhone OS 5.0.1 (9A405) Report Version: 104 Exception Type: EXC_BREAKPOINT (SIGTRAP) Exception Codes: 0x00000001, 0xe7ffdefe Crashed Thread: 0 Dyld Error Message: Library not loaded: /Developer/Library/Frameworks/SenTestingKit.framework/SenTestingKit Referenced from:

Sending Application login credentials to AppStore reviewers

风格不统一 提交于 2019-12-04 06:24:56
问题 I've just uploaded my application to the appstore. The application requires a username / password to log-in, but I was never prompted for any credentials during the upload process. Does anyone know how I can send the reviewers my credentials without having to wait for them to review and request the credentials? 回答1: When you submit the app, there is a field near the bottom of one of the screens for "review notes" which is where login information should be placed. You may be able to in to

CodeSign Error after changing Product Name

前提是你 提交于 2019-12-04 05:15:49
问题 I recently come across a hectic problem when App Store rejected my application saying that the App Name and the Product Name are not same. I followed the steps told by them to change the product name. But when I rebuilt the app, it gives me a codesigning error: Error : codesign failed with exit code 1 Any idea what the problem is here? 回答1: The problem was that there where different names entered in the following configuration fields: Project -> Edit Active Target -> Properties Tab -> Field

iPhone Crash with “No Backtrace”

烈酒焚心 提交于 2019-12-04 04:40:58
问题 My iPhone app was recently rejected from the App Store "because it crashes on launch". However, I cannot reproduce this crash. The app works perfectly on both the simulator and a device with the same hardware and software Apple tested it on (iPhone 3.1 running iOS 4). The crash logs they sent me say "No Backtrace Available", so I have nowhere to look in my code. Here's an example: Incident Identifier: [...] CrashReporter Key: [...] Hardware Model: iPhone3,1 Process: [MyApp] [1172] Path: /var

iOS Detect system volume level change. private API or not? AVSystemController_SystemVolumeDidChangeNotification

十年热恋 提交于 2019-12-04 03:06:10
Can listening to AVSystemController_SystemVolumeDidChangeNotification NSNotification be considered (during the App Store review process) as using private API? In my application I need to display and update the current volume level. Volume indicator should be updated after pressing hardware volume buttons and after volume change in MPVolumeView slider. I've searched solution how to get notification or event of hardware volume button press and had found a number of solutions. For example, iPhone Detect Volume Keys press. and How to get audio volume level, and volume changed notifications on iOS?