summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorMartin Hibdon <mah@android.com>2010-03-17 15:29:42 -0700
committerMartin Hibdon <mah@android.com>2010-03-17 15:29:42 -0700
commit7848314dd1123b795423acd5099f1037527d1910 (patch)
tree362c45185ad07ac515fffc7a31722761efd3a8d9 /AndroidManifest.xml
parentb459553e9a03cbb2697dc80b6227ed044f5576f8 (diff)
downloadSpeechRecorder-7848314dd1123b795423acd5099f1037527d1910.tar.gz
Ressurect the SpeechRecorder application
This application records speech samples to test against the VoiceDialer and BluetoothVoiceDialer application to see how good our recognition is. This code had been in the tree before, but it was removed when the VoiceDialer app was no longer under active development. Change-Id: I9510f420e4db6f31c76c5b79c7e39fc466104bc4
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100644
index 0000000..2197a97
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<manifest package="com.android.speechrecorder"
+ xmlns:android="http://schemas.android.com/apk/res/android">
+ <uses-permission android:name="android.permission.RECORD_AUDIO"/>
+ <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
+
+ <application android:label="@string/app_name">
+ <!-- Initial Page -->
+ <activity android:name="SpeechRecorderActivity"
+ android:label="@string/speechrecorderlabel">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
+
+ </application>
+
+</manifest>