forked from momodalo/vimtouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
80 lines (80 loc) · 4.02 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
72
73
74
75
76
77
78
79
80
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.momodalo.app.vimtouch"
android:versionCode="61100031"
android:versionName="2.7"
android:installLocation="auto"
>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="19"
/>
<application android:icon="@drawable/app_vimtouch"
android:label="@string/application_vimtouch"
android:allowBackup="true"
>
<activity android:name="net.momodalo.app.vimtouch.VimTouch"
android:theme="@style/VimTheme"
android:launchMode="singleInstance"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize|stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.EDIT" />
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/octet-stream" />
<data android:mimeType="application/javascript" />
<data android:mimeType="application/json" />
<data android:mimeType="application/atom+xml" />
<data android:mimeType="application/soap+xm" />
<data android:mimeType="application/xhtml+xml" />
<data android:mimeType="application/xml-dtd" />
<data android:mimeType="application/x-latex" />
<data android:mimeType="application/*xml" />
<data android:mimeType="application/ecmascript" />
</intent-filter>
<intent-filter>
<action android:name="com.googlecode.android_scripting.action.EDIT_SCRIPT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="net.momodalo.app.vimtouch.VimTouchPreferences"/>
<activity android:name="net.momodalo.app.vimtouch.VimFileActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
android:excludeFromRecents="true"
/>
<activity android:name="net.momodalo.app.vimtouch.InstallProgress"
android:theme="@style/VimInstallTheme"
android:launchMode="singleInstance"
android:label="@string/install_activity"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="ftp" />
<data android:host="*" />
<data android:pathPattern=".*\\.vrz" />
</intent-filter>
</activity>
<service android:name="net.momodalo.app.vimtouch.VimTermService" />
<service android:name="kvj.app.vimtouch.ext.manager.IntegrationProviderService" android:exported="true">
<intent-filter>
<action android:name="vimtouch.REMOTE_PROVIDER"/>
</intent-filter>
</service>
</application>
</manifest>