Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e08c38c authored by ryanlwlin's avatar ryanlwlin
Browse files

Fix Voice shortcuts not working system-wide in R

SpeechRecognizer binds RecognitionService to realize it's feature.
When RecognitionService checks the record_audio permission, itself
doesn't have the capabilities to use the permission since it's not
a foreground process. We use the addition flag to allow the bounded
process to get same capabilities.

Bug: 154954447
Test: manual test:
   1. Install Talkback with voice shortcut feature
   3. assign voice shorct function to any gesture
   2. launch any app to leave home and trigger shortcut via the gesture
Change-Id: I2f867af739c69a5ba29bb49397819cb61915e42d
parent b9797613
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;