I have an application with a AccesibilityService declared in Manifiest.xml
this way:
<service android:name="com.clv.app3.NoficationService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
</service>
Well. I have another service, and an activity. When the application is launched, the AccesibilityService is automatically lauched. When I close the application... the AccesibilityService is still alive, and if I restart my android device, the AccesibilityService is started too, so I lose control from my application. Can I make it manual as in other services ?