'Statistics of iOS versions that the users are running the app on
I have an app on Apple Store and I would want to know the breakdown of devices running iOS 7, iOS 7.1, iOS 8, etc. However, this information doesn't seem to exist on iTunes Connect which is just showing breakdown of devices like iPhone, iPad.
My question is can we find the breakdown of the devices based on iOS version for an app on Apple Store? This will help me decide which iOS versions the new release should be targeted.
Thanks.
Solution 1:[1]
Now you can check application usage by iOS version at
https://analytics.itunes.apple.com.
The URL is memorizable enough. Mnemonics!
Let me attach a screenshot from a different post as an example:
iTunesConnect - Download automatically app's usage analytics

For more screenshots, please check this post:
Solution 2:[2]
The answer by computingfreak is a little outdated now as iTunes Connect was changed to AppStore Connect in the past couple of years. As of January 2021, one can open AppStoreConnect, go to the Analytics section, choose your app, change the measurement drop down Platform Version and view a breakup in different iOS versions, like illustrated in the following screenshot:
Solution 3:[3]
If app is already on the store then i doubt tracking this would not be possible.
what you are looking for is the analytics so try using open source tool named flurry OR google analytics to track this.
But you may integrate this in the new version of your mobile app
Hope it helps
Solution 4:[4]
You would need to install something like Flurry Analytics to get that. iTunes Connect does not provide that level of detail.
Solution 5:[5]
You can create a very simple web service for getting the Statistics of iOS versions
You will get the current version from the below Objective C code
UIDevice *dev = [UIDevice currentDevice];
NSString *deviceSystemVersion = dev.systemVersion;
Solution 6:[6]
You can go to Appstore connect-> Analytics-> Metrics, Here you can select Usage -> Active devices and filter by IOS version to see how many users are using which version.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Community |
| Solution 2 | CodeBrew |
| Solution 3 | NSDumb |
| Solution 4 | Juan |
| Solution 5 | Sreeraj VR |
| Solution 6 | Anupam Chaplot |

