Merge "Use the permission for hotword recognition" into klp-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
22ae5d6de1
@@ -37,6 +37,8 @@
|
||||
<uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW" />
|
||||
<uses-permission android:name="android.permission.BIND_DEVICE_ADMIN" />
|
||||
<uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" />
|
||||
<!-- Permission to perform hotword recognition -->
|
||||
<uses-permission android:name="android.permission.HOTWORD_RECOGNITION" />
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
android:process="com.android.systemui"
|
||||
|
||||
@@ -1784,30 +1784,23 @@ public class KeyguardHostView extends KeyguardViewBase {
|
||||
}
|
||||
}
|
||||
|
||||
public void onHotwordRecognized(final PendingIntent intent) {
|
||||
public void onHotwordRecognized(final Intent intent) {
|
||||
if (DEBUG) Log.d(TAG, "onHotwordRecognized");
|
||||
maybeStopHotwordDetector();
|
||||
// See if an activity can handle this intent.
|
||||
if (getContext().getPackageManager().resolveActivity(intent, 0) == null)
|
||||
return;
|
||||
if (SecurityMode.None == mCurrentSecuritySelection) {
|
||||
if (intent != null) {
|
||||
try {
|
||||
intent.send();
|
||||
} catch (PendingIntent.CanceledException e) {
|
||||
Log.w(TAG, "Failed to launch PendingIntent. Encountered CanceledException");
|
||||
}
|
||||
mActivityLauncher.launchActivity(intent, true, true, null, null);
|
||||
}
|
||||
mCallback.userActivity(0);
|
||||
mCallback.dismiss(false);
|
||||
} else if (ENABLE_HOTWORD_SECURE && mLockPatternUtils.isSecure()) {
|
||||
setOnDismissAction(new OnDismissAction() {
|
||||
@Override
|
||||
public boolean onDismiss() {
|
||||
if (intent != null) {
|
||||
try {
|
||||
intent.send();
|
||||
} catch (PendingIntent.CanceledException e) {
|
||||
Log.w(TAG, "Failed to launch PendingIntent."
|
||||
+ "Encountered CanceledException");
|
||||
}
|
||||
mActivityLauncher.launchActivity(intent, true, true, null, null);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user