-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
42 lines (34 loc) · 1.69 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
42 lines (34 loc) · 1.69 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hlidskialf.android.filer"
android:versionCode="11000"
android:versionName="1.1.0">
<uses-sdk android:minSdkVersion="2" />
<application android:label="@string/app_name" android:icon="@drawable/filer">
<activity android:name="com.hlidskialf.android.filer.FilerActivity"
android:launchMode="singleInstance"
android:label="@string/app_name"
android:icon="@drawable/filer">
<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.RUN" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:mimeType="text/directory" />
</intent-filter>
</activity>
<activity android:name="com.hlidskialf.android.filer.FilerActivity"
android:label="@string/app_name"
android:icon="@drawable/filer">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.hlidskialf.android.filer.FilerPreferencesActivity" />
<provider android:name="com.hlidskialf.android.filer.MimeProvider"
android:authorities="com.hlidskialf.android.filer"/>
</application>
</manifest>