forked from intervigilium/MicDroid
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAndroidManifest.xml
24 lines (22 loc) · 1.39 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.intervigil.micdroid"
android:versionCode="9"
android:versionName="0.19">
<!-- android:installLocation="auto" -->
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="com.intervigil.micdroid.MicApplication">
<activity android:label="@string/app_name" android:name=".Mic" android:configChanges="keyboard|keyboardHidden|orientation" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="@string/set_preferences" android:name=".Preferences" />
<activity android:label="@string/filename_entry" android:name=".FileNameEntry" android:theme="@android:style/Theme.Dialog" />
<activity android:label="@string/recording_library" android:name=".RecordingLibrary" />
<activity android:label="@string/recording_player" android:name=".RecordingPlayer" android:theme="@android:/style/Theme.Dialog" />
</application>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>