我有问题。我只是启动Service MyService。
使用android:process=":remote"
不能启动服务。
如果我删除android:precess=":remote"
,看来不是问题。
出什么问题了?
<service
android:name=".MyService"
android:enabled="true"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
android:process=":remote">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
</service>