Merge "Skip preflight RECORD_AUDIO in RecognitionService if FD provided" into tm-dev am: 39e65acd0a
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18298904 Change-Id: Ie196191e37d15b15becd2a83d3efbe6008092513 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -129,8 +129,9 @@ public abstract class RecognitionService extends Service {
|
||||
@NonNull AttributionSource attributionSource) {
|
||||
try {
|
||||
if (mCurrentCallback == null) {
|
||||
boolean preflightPermissionCheckPassed = checkPermissionForPreflightNotHardDenied(
|
||||
attributionSource);
|
||||
boolean preflightPermissionCheckPassed =
|
||||
intent.hasExtra(RecognizerIntent.EXTRA_AUDIO_SOURCE)
|
||||
|| checkPermissionForPreflightNotHardDenied(attributionSource);
|
||||
if (preflightPermissionCheckPassed) {
|
||||
if (DBG) {
|
||||
Log.d(TAG, "created new mCurrentCallback, listener = "
|
||||
|
||||
Reference in New Issue
Block a user