I want to develop a voice application which has to respond when the user speaks some commands. I think I need a service to accomplish my task.But I have learnt from several resources that a service cannot run for a long time.The android system automatically destroys a service if it sits idle.
So my question is whether it is possible to run a service continuously without being destroyed and respond to user actions?
I am new to Android development.So if there is anything wrong in the question, please correct me.
Thanks for the help!