Merge "Fix Voice shortcuts not working system-wide in R" into rvc-dev

This commit is contained in:
Ryan Lin
2020-05-08 02:26:37 +00:00
committed by Android (Google) Code Review

View File

@@ -283,8 +283,8 @@ public class SpeechRecognizer {
} else {
serviceIntent.setComponent(mServiceComponent);
}
if (!mContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) {
if (!mContext.bindService(serviceIntent, mConnection,
Context.BIND_AUTO_CREATE | Context.BIND_INCLUDE_CAPABILITIES)) {
Log.e(TAG, "bind to recognition service failed");
mConnection = null;
mService = null;