0%

Service Intent must be explicit错误

在Android 5.0以上版本,Intent必须声明为显式,否则会报Service Intent must be explicit错误,解决的方法很简单,在Intent中设定需要响应此Intent的包信息就可以了:

1
2
3
4
Intent intent = new Intent();
intent.setAction("YOUR_ACTION");
intent.setPackage("TargetPackageName");
bindService(intent, conn, Context.BIND_AUTO_CREATE);