not allowed to bind to service intent

Solutions on MaxInterview for not allowed to bind to service intent by the best coders in the world

showing results for - "not allowed to bind to service intent"
Benjamín
01 Jan 2018
1In the Manifest you can set exported attribute to true.
2This makes the service accessible to other apps. Manifest.xml 
3<service android:name=".MyUsefulService_" 
4android:exported="true"/>