10

On the simulator I have noticed that my app has a red circle next to the app title, similar to the blue circle that appears next to newly downloaded apps, however just red instead.

This is what it looks like:

enter image description here

What does this imply?

NJanf
  • 359
  • 2
  • 6
  • 21
  • It implies that you updated the app and haven't opened it yet. – gabbler Oct 15 '14 at 01:08
  • @CarouselMin That's odd, it does not disappear if i quit and then open the app. I have done it several times. Could the simulator be glitching? – NJanf Oct 15 '14 at 01:10
  • Sorry, I have no idea. – gabbler Oct 15 '14 at 01:14
  • Which version of Xcode are you using? Wondering if a new version of Xcode or iOS is using that to indicate backwards incompatibility or some other issue like that? Just guessing, though. – Zev Eisenberg Oct 15 '14 at 02:19
  • @ZevEisenberg I think it has to do with the version/build number of the app itself. It only happened after I changed the version/build. But when it happens it's seemingly impossible to get rid of the dot. I still have no clue as to what it is supposed to imply. – NJanf Oct 15 '14 at 02:30
  • Might be a good post for devforums.apple.com – Zev Eisenberg Oct 15 '14 at 02:43
  • @ZevEisenberg I actually posted this question to the devforums before posting to stackoverflow. No luck yet though. – NJanf Oct 15 '14 at 03:06
  • The orange dot on your device's home screen - indicate it's a test build. In iTunes Connect check the “Prerelease” Tab…. – TonyMkenu Oct 15 '14 at 08:48
  • I have the same problem. My solution is i change the "Code Signing Identity" under Built Settings to a another profile. – NoBody Oct 29 '14 at 23:33

3 Answers3

7

I got the Actual Solution for this problem it is due to provisioning Profile. if you are using live app provisioning profile in your app Build setting , change it and after that you will never see that orange circle.

Tomer Shetah
  • 8,413
  • 7
  • 27
  • 35
jamil
  • 2,419
  • 3
  • 37
  • 64
4

If to believe to other answers here, there might be several reasons for this red dot.

In my case, the reason appears in TestFlight's docs:

How will I know which apps on my device are beta apps?
Beta apps will be indicated with an orange dot next to the app name on your device.

Got a lead for finding this thanks to Ashish's comment to one of the answers here.

ishahak
  • 6,585
  • 5
  • 38
  • 56
0

As far as I can see the red dot near an app name indicates that you enabled some capability (for example HealthKit) in the 'Capabilities' menu of your target, which isn't allowed for your app ID. It appears only on iOS 8+ simulators.

If so, you also will see this red sign in 'Capabilities' menu: 'Capabilities' menu

You need to go to Apple developers portal and enable capability you need for your app ID.

If after that you still got red dot in springboard and red sign in 'Capabilities', try to go to Preferences -> Accounts -> Double click your account -> refresh button. I got rid of mysterious red dot after this.