-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
57 lines (51 loc) · 2.08 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
57 lines (51 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.esgi.my_vocal_task"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:allowBackup="true"
android:debuggable="true"
android:icon="@drawable/mic_back"
android:label="Mon Dictaphone"
android:theme="@style/AppTheme" >
<activity
android:name="fr.esgi.my_vocal_task.My_Recorder"
android:label="@string/app_name" >
</activity>
<activity
android:name="fr.esgi.my_vocal_task.SettingsActivity"
android:label="@string/title_activity_settings" >
</activity>
<activity
android:name="fr.esgi.my_vocal_task.Home"
android:label="@string/title_activity_home" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="fr.esgi.my_vocal_task.ShowOneNote"
android:label="@string/title_activity_media__player"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="fr.esgi.my_vocal_task.MainActivity_mediapl"
android:label="@string/title_activity_main_activity_mediapl" >
</activity>
</application>
</manifest>