ITunes review URL and iOS 7 (ask user to rate our app) AppStore show a blank page

Starting with iOS7 the URL has changed and cannot direct for the review page but only to the app itms-apps://itunes.apple.com/app/idAPP_ID Where APP_ID need to be replaced with your Application ID. Based on the App ID from the question it would be the following itms-apps://itunes.apple.com/app/id353372460 Notice the id in front of the number … that string … Read more

If I revoke an existing distribution certificate, will it mess up anything with existing apps?

There is no problem doing this unless you are on an enterprise account. Distribution certificates expire anyway, so eventually it will happen that you need a new one. Go ahead and delete away. You can also find this question asked, answered, and asked again many times over on the Apple Dev forums (e.g. here’s one), … Read more

iPhone reachability checking

From your screen shot, it seems like you do not have Reachability added to your project. You must download Reachability from Apple: https://developer.apple.com/library/content/samplecode/Reachability/Introduction/Intro.html And add both .h and .m files to your project. Update: You noted you have Reachability. But looking at the most recent version, I can see why you have the errors you … Read more

Unable to process application info.plist validation at this time due to a general error (1095)

This is clearly an Apple server issue, not an Xcode/iOS/OSX issue. Just wait patiently and Apple’s servers will catch up to the traffic, or solve whatever issues they’re having at their end. If you’re anxious, feel free to just sit there and restart Xcode until it works – but it’s not restarting Xcode, only the … Read more

Using SSL in an iPhone App – Export Compliance

Update as of 20th September 2016 ERN’s are no longer required, so it seems many apps will no longer need to register with the US government. (Though you may still need to file a bi-annual Self-Classification Report Supp. No. 8 to Part 742 report.) http://www.bis.doc.gov/InformationSecurity2016-updates (Thanks to @EugenioDeHoyos and @user3562927 for pointing this out!) This … Read more

iOS app submission : missing 64-bit support

Use “Standard architectures” like this: Architecture: “Standard architectures” arm7, arm64 Valid Architectures: “arm64” , armv7… Build Active Architecture Only – NO (specially… if your connected device is not arm64 compatible) like this: Additionally, unplugging iphones and ipads from the mac has been known to help, especially if they are 32-bit versions.