itunes-store
How to Change App name in iTunes Connect
After some confusion I managed to change my app name (while it was in status ‘Prepare for Upload’ – not sure if this works for other statuses): Log in to Itunes Connect Click “Manage applications” Click on your app Click “View details” under your current version Click on Edit next to “Metadata and Uploads” And … 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
application loader stuck at the stage of “Authenticating with the iTunes Store”
I had this problem when behind a firewall. I got around it by editing: /Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/MacOS/itms/java/lib/net.properties If you do not find net.properties in above mentioned path then try, as it is changed now. /Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/itms/java/lib/net.properties Change the line: # https.proxyPort=443 To: https.proxyPort=80 This enables the application to use the HTTP port for HTTPS. Worked straight … 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