Skip to content

Commit f144973

Browse files
committedDec 18, 2015
Update version number
+ add a note on "android.speech.extra.DICTATION_MODE" for possible future use.
1 parent 92c7cbb commit f144973

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed
 

‎app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ android {
2323
applicationId 'ee.ioc.phon.android.speak'
2424
minSdkVersion 14
2525
targetSdkVersion 23
26-
versionCode 1406
27-
versionName '1.4.06'
26+
versionCode 1408
27+
versionName '1.4.08'
2828
}
2929

3030
packagingOptions {

‎app/src/ee/ioc/phon/android/speak/Extras.java

+7
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ public class Extras {
5353
// Caller wants to have the audio data in a certain format (String)
5454
public static final String EXTRA_GET_AUDIO_FORMAT = "android.speech.extra.GET_AUDIO_FORMAT";
5555

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+
5663
/**
5764
* <p>Key used to retrieve an {@code ArrayList<String>} from the {@link Bundle} passed to the
5865
* {@link RecognitionListener#onResults(Bundle)} and

0 commit comments

Comments
 (0)
Failed to load comments.