hi,
I have created an app that reads the nfc card data. It works perfectly fine as long as the app is in the foreground. But in my app I invoke another plugin which comes on full screen and when that happens my app (which listens to nfc) stops listening and the built in nfc reader in Android responds.
I believe this is because Android suspends my app the moment something else takes over the screen, even though that 'something' is a plugin that I can calling from within my app. Any solutions?
I believe one solution would be to write some background service. Is there a simpler way for now? I just need my app not to be suspended when i invoke the plugin. Can I fiddle around with the launchmode / intents etc to achieve this?
Thanks,
Murali