I developed a wearable app for Android Wear that read NFC tags. The hardware I used is a Sony Smartwatch 3 modified following instructions on this link: Sony SmartWatch 3 NFC Support Package.
Now my objective is to make a clock app able reading NFC.
Problem is: Android Wear apps are not based on activities but on services, despite the fact that they interact with user and have an output on screen.
Android NFC library has many limitations, one of them (as far as I know) is that it can be used only inside activities.
So my question: is there a way to use Android NFC library (android.nfc.tech.NfcV
) and manage NFC tags inside a CanvasWatchFaceService
class?