21 lines
762 B
XML
21 lines
762 B
XML
<?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>
|