2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ android {
23
23
applicationId ' ee.ioc.phon.android.speak'
24
24
minSdkVersion 14
25
25
targetSdkVersion 23
26
- versionCode 1406
27
- versionName ' 1.4.06 '
26
+ versionCode 1408
27
+ versionName ' 1.4.08 '
28
28
}
29
29
30
30
packagingOptions {
Original file line number Diff line number Diff line change @@ -53,6 +53,13 @@ public class Extras {
53
53
// Caller wants to have the audio data in a certain format (String)
54
54
public static final String EXTRA_GET_AUDIO_FORMAT = "android.speech.extra.GET_AUDIO_FORMAT" ;
55
55
56
+ // Switch on continuous recognition (boolean)
57
+ // Same as EXTRA_UNLIMITED_DURATION
58
+ // Used on Chrome to talk to Google's recognizer?
59
+ // (http://src.chromium.org/svn/trunk/src/content/public/android/java/src/org/chromium/content/browser/SpeechRecognition.java)
60
+ // Currently not used, because behaves in an incompatible way.
61
+ public static final String EXTRA_DICTATION_MODE = "android.speech.extra.DICTATION_MODE" ;
62
+
56
63
/**
57
64
* <p>Key used to retrieve an {@code ArrayList<String>} from the {@link Bundle} passed to the
58
65
* {@link RecognitionListener#onResults(Bundle)} and
0 commit comments