1

I have android:launchMode="singleInstance" in the main activity in my manifest file. I think I am still getting multiple instances of the app under some circumstances. How can I tell?

GeoffC
  • 61
  • 1
  • 7
  • [This](http://stackoverflow.com/questions/24578280/seems-like-my-little-android-app-is-running-multiple-instance) might be a helpful link. – Strider Jun 11 '15 at 06:10

1 Answers1

0

Use

android:launchMode="singleTop"

Instead of

 android:launchMode="singleInstance"
Santosh Kathait
  • 1,444
  • 1
  • 11
  • 22