-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
71 lines (60 loc) · 2.88 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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.videoeditor"
android:versionCode="11"
android:versionName="1.1">
<uses-sdk android:minSdkVersion="11" android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application android:icon="@mipmap/ic_launcher_moviestudio"
android:label="@string/short_app_name" android:hardwareAccelerated="true"
android:largeHeap="true">
<service android:name=".service.ApiService"/>
<activity android:name=".ProjectsActivity"
android:theme="@style/Theme.VideoEditorHolo">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".VideoEditorActivity"
android:theme="@style/Theme.VideoEditorHolo">
<intent-filter>
<action android:name="android.intent.action.EDIT" />
</intent-filter>
</activity>
<activity android:name=".TransitionsActivity"
android:theme="@android:style/Theme.Holo.DialogWhenLarge"
android:label="@string/transitions_select_transition">
<intent-filter>
<action android:name="android.intent.action.PICK" />
</intent-filter>
</activity>
<activity android:name=".OverlayTitleEditor"
android:theme="@android:style/Theme.Holo.Dialog"
android:label="@string/overlay_title">
<intent-filter>
<action android:name="android.intent.action.EDIT" />
</intent-filter>
</activity>
<activity android:name=".OverlayTitleTemplatePicker"
android:theme="@android:style/Theme.Holo.DialogWhenLarge"
android:label="@string/overlays_select_type">
<intent-filter>
<action android:name="android.intent.action.PICK" />
</intent-filter>
</activity>
<activity android:name=".EffectsActivity"
android:theme="@android:style/Theme.Holo.DialogWhenLarge"
android:label="@string/effects_select_effect">
<intent-filter>
<action android:name="android.intent.action.PICK" />
</intent-filter>
</activity>
<activity android:name=".KenBurnsActivity"
android:theme="@android:style/Theme.Holo.DialogWhenLarge"
android:label="@string/pan_zoom_title">
</activity>
</application>
</manifest>