App Called "nfc Services" Replacing My Own App
I want my Android app to start after scanning an NFC tag, so to make some tests I modified the tiapp.xml of Favebooks (a simple tutorial app for Titanium) by adding the following l
Solution 1:
I think the answer to your question would be to replace this line of code android:launchMode="singleTop"
by this one: android:launchMode="singleTask"
.
I posted an answer to the same question here.
Hope this helps!
Solution 2:
What you see is actually your app. Your app being displayed as "Nfc Service" (possily with a different icon) in the recent apps history seems to be a bug(?) in Android (or certain Android versions???).
Also see this question: When reading a NDEF tag the content it's showed in “NFC service” instead of the app.
Solution 3:
I had a similar problem and I have understood that the cause was android:name=".FavebooksActivity", if I deleted the name of activity, there was not a replacing of the app. I hope this can help you.
Post a Comment for "App Called "nfc Services" Replacing My Own App"