change app name in App Store

If you have already created the new version in ITC, you can edit your apps name with the following steps: In iTunes Connect, click your app and you will see versions at the bottom of the page, click “View Details” of your updated version (e.g. 1.1). Then click “Edit” next to “Metadate and Upoads” In … 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

Which iOS app version/build number(s) MUST be incremented upon App Store release?

Apple Technical Note TN2420, Version Numbers and Build Numbers Summary: The pair (Version, Build number) must be unique. The sequence is valid: (1.0.1, 12) -> (1.0.1, 13) -> (1.0.2, 13) -> (1.0.2, 14) … Version (CFBundleShortVersionString) must be in ascending sequential order. Build number (CFBundleVersion) must be in ascending sequential order. Version Number and Build … Read more

required iPv6 compatibility – iOS app rejected by apple

If you are using IPv4-specific APIs or hard-coded IP addresses, you will need to update your code, Although all NSURLSession and CFNetwork APIs(including NSURLConnection) already support IPV6 As mentioned by Apple: At WWDC 2015 we announced the transition to IPv6-only network services in iOS 9. Starting June 1, 2016 all apps submitted to the App … Read more