OSDN Git Service

Some providers + Some actions
[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
29   <application
30     android:name="ExplorerApplication"
31     android:description="@string/app_description"
32     android:icon="@drawable/ic_launcher"
33     android:label="@string/app_name"
34     android:process=":main"
35     android:theme="@style/Explorer.Theme.Holo.Ligth" >
36
37     <meta-data
38       android:name="android.app.default_searchable"
39       android:value=".activities.NavigationActivity" />
40
41     <provider
42       android:name=".providers.RecentSearchesContentProvider"
43       android:authorities="com.cyanogenmod.explorer.providers.recentsearches"
44       android:exported="false" />
45
46     <provider
47       android:name=".providers.BookmarksContentProvider"
48       android:authorities="com.cyanogenmod.explorer.providers.bookmarks"
49       android:exported="false" />
50
51     <activity
52       android:name=".activities.NavigationActivity"
53       android:label="@string/app_name"
54       android:launchMode="singleTop"
55       android:uiOptions="none"
56       android:windowSoftInputMode="adjustNothing" >
57       <intent-filter>
58         <action android:name="android.intent.action.MAIN" />
59         <category android:name="android.intent.category.LAUNCHER" />
60         <category android:name="android.intent.category.DEFAULT" />
61       </intent-filter>
62       <intent-filter>
63         <action android:name="android.intent.action.SEARCH" />
64         <category android:name="android.intent.category.DEFAULT" />
65       </intent-filter>
66       <meta-data
67         android:name="android.app.searchable"
68         android:resource="@xml/searchable" />
69     </activity>
70
71     <activity
72       android:name=".activities.BookmarksActivity"
73       android:label="@string/bookmarks"
74       android:uiOptions="none"
75       android:windowSoftInputMode="adjustNothing" >
76     </activity>
77
78     <activity
79       android:name=".activities.HistoryActivity"
80       android:label="@string/history"
81       android:uiOptions="none"
82       android:windowSoftInputMode="adjustNothing" >
83     </activity>
84
85     <activity
86       android:name=".activities.SearchActivity"
87       android:label="@string/search"
88       android:launchMode="singleTop"
89       android:uiOptions="none"
90       android:windowSoftInputMode="adjustNothing" >
91     </activity>
92
93     <activity
94       android:name=".activities.preferences.SettingsPreferences"
95       android:label="@string/pref"
96       android:icon="@drawable/ic_launcher_settings"
97       android:exported="false">
98       <intent-filter>
99          <category android:name="android.intent.category.PREFERENCE" />
100       </intent-filter>
101     </activity>
102
103   </application>
104
105 </manifest>