Reputation: 81
I have to create an application for Android Wear which schedules a task in background.For this I have used AlarmManager
in wearable app. But after this my application is not listed in Wearable emulator.
Is it possible to schedule tasks using Alarm Manager in wearable itself?
Upvotes: 3
Views: 638
Reputation: 130
Have you seen this documentation: https://developer.android.com/training/wearables/apps/always-on.html
"For apps that require more frequent updates, such as a fitness, time-keeping, and travel information apps, use an AlarmManager object to wake the processor and update the screen more frequently."
Upvotes: 1