-
Notifications
You must be signed in to change notification settings - Fork 102
/
AndroidManifest.xml
111 lines (103 loc) · 5.04 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?xml version="1.0" encoding="utf-8"?>
<!--
* Copyright (C) 2007-2008 OpenIntents.org
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.openintents.filemanager"
android:versionName="1.1.4-rc1"
android:versionCode="10">
<!-- History:
[10] 1.1.4-rc1:2010-06-23
[9] 1.1.3: 2010-05-29
[8] 1.1.2: 2010-05-29
[7] 1.1.1: 2009-12-26
[6] 1.1.1-rc1: 2009-12-19
[5] 1.1.0: 2009-10-30
[4] 1.1.0-rc1: 2009-10-24
[3] 1.0.2: 2009-10-15
[2] 1.0.1: 2009-01-16
[1] 1.0.0: 2008-12-10
-->
<uses-sdk android:minSdkVersion="2"
android:targetSdkVersion="4" />
<!-- If targetSdkVersion is increased, the following needs to be adjusted:
* FileManagerActivity: onKeyDown(): New way how "back" key is handled. -->
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:icon="@drawable/ic_launcher_folder" android:label="@string/app_name">
<!-- aTrackDog metadata -->
<meta-data android:name="com.a0soft.gphone.aTrackDog.testVersion"
android:value="6" />
<meta-data android:name="org.openintents.metadata.COMMENTS"
android:value="@string/about_comments" />
<meta-data android:name="org.openintents.metadata.COPYRIGHT"
android:value="@string/about_copyright" />
<meta-data android:name="org.openintents.metadata.AUTHORS"
android:resource="@array/about_authors" />
<meta-data android:name="org.openintents.metadata.DOCUMENTERS"
android:resource="@array/about_documenters" />
<meta-data android:name="org.openintents.metadata.TRANSLATORS"
android:resource="@array/about_translators" />
<meta-data android:name="org.openintents.metadata.ARTISTS"
android:resource="@array/about_artists" />
<meta-data android:name="org.openintents.metadata.WEBSITE_LABEL"
android:value="@string/about_website_label" />
<meta-data android:name="org.openintents.metadata.WEBSITE_URL"
android:value="@string/about_website_url" />
<meta-data android:name="org.openintents.metadata.LICENSE"
android:resource="@raw/license_short" />
<meta-data android:name="org.openintents.metadata.EMAIL"
android:value="@string/about_email" />
<activity android:name=".FileManagerActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="org.openintents.action.PICK_FILE"/>
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
</intent-filter>
<intent-filter>
<action android:name="org.openintents.action.PICK_FILE"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.openintents.action.PICK_DIRECTORY"/>
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
</intent-filter>
<intent-filter>
<action android:name="org.openintents.action.PICK_DIRECTORY"/>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.GET_CONTENT" />
<data android:mimeType="*/*" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.OPENABLE" />
</intent-filter>
</activity>
<activity android:name="org.openintents.distribution.EulaActivity" android:label="@string/eula_title">
</activity>
<!--
<activity android:name=".PreferenceActivity" android:label="@string/preferences">
</activity> -->
<provider android:name=".FileManagerProvider" android:authorities="org.openintents.filemanager"></provider>
</application>
</manifest>