Newly Published App reporting Version as “Unknown” in iTunes Connect

I was having the same problem. I updated the latest version. I cleared out my browser history and cache and it is now working. If that doesn’t work for you, try another browser. I usually use Chrome. Before clearing out Chrome’s cache/history, I decided to try Safari. No luck. Then I tried Firefox and it … Read more

App Store Connect Warns – Invalid Document Configuration

I just ran into the same problem; I don’t know why, since I barely change anything since the previous version of my app. Anyway, my app doesn’t support the Document Browser, so the first half of the error message doesn’t apply. That left me with the second half. I looked up LSSupportsOpeningDocumentsInPlace‘s documentation and still … Read more

Xcode 6 App Store submission fails with “Your account already has a valid iOS distribution certificate”

Got it solved by editing the iOS Distribution Provision Profile in the Developer Member Center. For some reason there were 2 certificates to choose from for the Distribution Provisioning Profile. I switched over to the other certificate and I could Validate and Submit my Archive build for beta testing. So, you may have more than … 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

Open AppStore through button

Here. But I highly suggest you learn the basics of Swift! UIApplication.sharedApplication().openURL(NSURL(string: “itms://itunes.apple.com/de/app/x-gift/id839686104?mt=8&uo=4”)!) If you wanna open the AppStore in Swift 5: if let url = URL(string: “itms-apps://itunes.apple.com/app/id1629135515”) { UIApplication.shared.open(url) }

Xcode error when uploading to App Store: “No suitable application records were found”

I suspect you should not be calling your app “com.ionicframework.app315125”. That looks like a leftover name from an example project. You need to create a new Bundle Identifier in the Developer portal: Then choose it when you “Create New App” in iTunesConnect: For me, I’d pick com.maniac-games.lowdown.

Redirect to application if installed, otherwise to App Store

I think the more simple answer would be to set up a page on your server with the following javascript: (function() { var app = { launchApp: function() { window.location.replace(“myapp://”); this.timer = setTimeout(this.openWebApp, 1000); }, openWebApp: function() { window.location.replace(“http://itunesstorelink/”); } }; app.launchApp(); })(); This basically attempts to redirect to your app and sets a timeout … Read more

How can I add a link for a rate button with swift?

Try This, change appId in your method by your App ID Swift 5 import StoreKit func rateApp() { if #available(iOS 10.3, *) { SKStoreReviewController.requestReview() } else if let url = URL(string: “itms-apps://itunes.apple.com/app/” + “appId”) { if #available(iOS 10, *) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } else { UIApplication.shared.openURL(url) } } } Swift 3 \ … Read more