Hotword Detection Disabled With Accessibly Service
I've created a accessibly service for saving every toast message, but now hotword detection in Google Now will be disabled, if I activate my service. Logcat shows: W/HotwordState�
Solution 1:
To prevent false positives, hotword detection is disabled when a spoken feedback service is enabled. You have defined your service as providing all possible types of feedback, which includes spoken.
android:accessibilityFeedbackType="feedbackAllMask"
You should change this to reflect only the type of feedback your service actually provides. For example:
android:accessibilityFeedbackType="feedbackGeneric"
Post a Comment for "Hotword Detection Disabled With Accessibly Service"