An error occurred uploading to the iTunes Store

If you are unable to upload Apps to Apple and installed the JavaOSX update (April 3, 2012) this may help you regain your ability to upload Apps: You can work around this issue by re-creating the old Java 1.5 symlinks: cd /System/Library/Frameworks/JavaVM.framework/Versions sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5 sudo ln -s CurrentJDK /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0 Edit Oct 5, … Read more

Get itunes link for app before submitting

The manual way: Your should copy your “Apple ID” from iTunes connect and use this link: http://itunes.apple.com/us/app/APPNAME/idXXXXXXXXX Would open the US store (“APPNAME” is that app name and XXXXXXXXX is the “Apple ID”. You can use more general method (Recommended): http://itunes.apple.com/app/idXXXXXXXXX and replace “XXXXXXXXX” with your “Apple ID” (from iTunes connect – after creating the … Read more

Direct “rate in iTunes” link in my app?

This IS possible using the technique described on this blog: http://www.memention.com/blog/2009/09/03/Open-Reviews.html basically you call UIApplication openURL with the following: NSString* url = [NSString stringWithFormat: @”itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@”, myAppID]; [[UIApplication sharedApplication] openURL: [NSURL URLWithString: url]]; To get your app ID before your app is available in the app store, use iTunesConnect to define your new app – give … Read more