summaryrefslogtreecommitdiffstats
path: root/tests/VoiceInteraction/src
diff options
context:
space:
mode:
authorSandeep Siddhartha <sansid@google.com>2014-07-20 12:22:56 -0700
committerSandeep Siddhartha <sansid@google.com>2014-07-20 16:53:09 -0700
commit110f569b47bc21fb38ec25b6110ee302ce137e06 (patch)
treeb596841dbf21aaf5d23e1d905cf2914f5f6d53e4 /tests/VoiceInteraction/src
parent8ca1fdc10b9afb831636ce00e48b9692476413c5 (diff)
downloadframeworks_base-110f569b47bc21fb38ec25b6110ee302ce137e06.zip
frameworks_base-110f569b47bc21fb38ec25b6110ee302ce137e06.tar.gz
frameworks_base-110f569b47bc21fb38ec25b6110ee302ce137e06.tar.bz2
Fix synchronization issues in AlwaysOnHotwordDetector
- Remove unnecessary recognition status from AlwaysOnHotwordDetector - Remove unnecessary recognition started callback from IRecognitionStatusCallback - Fix a bug around the fact that we weren't picking up enrollment at runtime because we were storing the availability at instantiation time. - Handle 0-length arrays in SoundTrigger classes while parceling/unparceling - Fix issue in SoundTrigger helper where we were not comparing binders for start/stop calls - Unload the previous model when starting a new recognition - Add more debug logging Change-Id: Icc56d7f3dd1ffa49a8cfeea49080e3ab4d342c32
Diffstat (limited to 'tests/VoiceInteraction/src')
-rw-r--r--tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java
index edb28ea..e74307f 100644
--- a/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java
+++ b/tests/VoiceInteraction/src/com/android/test/voiceinteraction/MainInteractionService.java
@@ -35,11 +35,6 @@ public class MainInteractionService extends VoiceInteractionService {
}
@Override
- public void onDetectionStarted() {
- Log.i(TAG, "onDetectionStarted");
- }
-
- @Override
public void onDetectionStopped() {
Log.i(TAG, "onDetectionStopped");
}