I m currently learning how create and use services on android. I looked on the android SDK for further help and i found the android:enable=[true | false].
in the SDK is said that:
The
<application>
and<service>
attributes must both be "true" (as they both are by default) for the service to be enabled. If either is "false", the service is disabled; it cannot be instantiated.
So i would like to know what is the interest of/ why (in general)
- setting the application enables as "false".
- setting the service enable as "false".
I say that if we put service enable as false there is no way to call that service, so why we create that service in the first place?
Thank you and sorry for such long message.