You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All services (also for plugins) should have exported=false and description attributes set in the AndroidManifest. As per documentation:
You can ensure that your service is available to only your app by including the android:exported attribute and setting it to false. This effectively stops other apps from starting your service, even when using an explicit intent.
Note: Users can see what services are running on their device. If they see a service that they don't recognize or trust, they can stop the service. In order to avoid having your service stopped accidentally by users, you need to add the android:description attribute to the element in your app manifest. In the description, provide a short sentence explaining what the service does and what benefits it provides.
The text was updated successfully, but these errors were encountered:
All services (also for plugins) should have
exported=false
anddescription
attributes set in the AndroidManifest. As per documentation:The text was updated successfully, but these errors were encountered: