OSDN Git Service

New activity "Picker Activity"
[android-x86/packages-apps-CMFileManager.git] / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3  ** Copyright (C) 2012 The CyanogenMod Project
4  **
5  ** Licensed under the Apache License, Version 2.0 (the "License");
6  ** you may not use this file except in compliance with the License.
7  ** You may obtain a copy of the License at
8  **
9  **      http://www.apache.org/licenses/LICENSE-2.0
10  **
11  ** Unless required by applicable law or agreed to in writing, software
12  ** distributed under the License is distributed on an "AS IS" BASIS,
13  ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ** See the License for the specific language governing permissions and
15  ** limitations under the License.
16 -->
17 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
18   package="com.cyanogenmod.explorer"
19   android:versionCode="100"
20   android:versionName="1.0.0">
21
22   <original-package android:name="com.cyanogenmod.explorer" />
23
24   <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="16" />
25
26   <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
27   <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
28   <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" />
29
30   <application
31     android:name="ExplorerApplication"
32     android:description="@string/app_description"
33     android:icon="@drawable/ic_launcher"
34     android:label="@string/app_name"
35     android:process=":main"
36     android:largeHeap="true"
37     android:theme="@style/Explorer.Theme.Holo.Ligth" >
38
39     <meta-data
40       android:name="android.app.default_searchable"
41       android:value=".activities.NavigationActivity" />
42
43     <provider
44       android:name=".providers.RecentSearchesContentProvider"
45       android:authorities="com.cyanogenmod.explorer.providers.recentsearches"
46       android:exported="false" />
47
48     <provider
49       android:name=".providers.BookmarksContentProvider"
50       android:authorities="com.cyanogenmod.explorer.providers.bookmarks"
51       android:exported="false" />
52
53     <activity
54       android:name=".activities.NavigationActivity"
55       android:label="@string/app_name"
56       android:launchMode="singleTop"
57       android:uiOptions="none"
58       android:windowSoftInputMode="adjustNothing" >
59       <intent-filter>
60         <action android:name="android.intent.action.MAIN" />
61         <category android:name="android.intent.category.LAUNCHER" />
62         <category android:name="android.intent.category.DEFAULT" />
63       </intent-filter>
64       <intent-filter>
65         <action android:name="android.intent.action.SEARCH" />
66         <category android:name="android.intent.category.DEFAULT" />
67       </intent-filter>
68       <meta-data
69         android:name="android.app.searchable"
70         android:resource="@xml/searchable" />
71     </activity>
72
73     <activity
74       android:name=".activities.BookmarksActivity"
75       android:label="@string/bookmarks"
76       android:uiOptions="none"
77       android:windowSoftInputMode="adjustNothing" >
78     </activity>
79
80     <activity
81       android:name=".activities.HistoryActivity"
82       android:label="@string/history"
83       android:uiOptions="none"
84       android:windowSoftInputMode="adjustNothing" >
85     </activity>
86
87     <activity
88       android:name=".activities.SearchActivity"
89       android:label="@string/search"
90       android:launchMode="singleTop"
91       android:uiOptions="none"
92       android:windowSoftInputMode="adjustNothing" >
93     </activity>
94
95     <activity
96       android:name=".activities.PickerActivity"
97       android:label="@string/picker"
98       android:uiOptions="none"
99       android:theme="@style/Explorer.Theme.Holo.Ligth.Overlay">
100       <intent-filter>
101         <action android:name="android.intent.action.GET_CONTENT" />
102         <category android:name="android.intent.category.OPENABLE" />
103         <category android:name="android.intent.category.DEFAULT" />
104         <data android:mimeType="*/*" />
105       </intent-filter>
106     </activity>
107
108     <activity
109       android:name=".activities.preferences.SettingsPreferences"
110       android:label="@string/pref"
111       android:icon="@drawable/ic_launcher_settings"
112       android:exported="false">
113       <intent-filter>
114          <category android:name="android.intent.category.PREFERENCE" />
115       </intent-filter>
116     </activity>
117
118   </application>
119
120 </manifest>