OSDN Git Service

New: Setting preferences
[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.RecentSearchesContentProvider"
44       android:exported="false" />
45
46     <activity
47       android:name=".activities.NavigationActivity"
48       android:label="@string/app_name"
49       android:launchMode="singleTop"
50       android:uiOptions="none"
51       android:windowSoftInputMode="adjustNothing" >
52       <intent-filter>
53         <action android:name="android.intent.action.MAIN" />
54         <category android:name="android.intent.category.LAUNCHER" />
55         <category android:name="android.intent.category.DEFAULT" />
56       </intent-filter>
57       <intent-filter>
58         <action android:name="android.intent.action.SEARCH" />
59         <category android:name="android.intent.category.DEFAULT" />
60       </intent-filter>
61       <meta-data
62         android:name="android.app.searchable"
63         android:resource="@xml/searchable" />
64     </activity>
65
66     <activity
67       android:name=".activities.BookmarksActivity"
68       android:label="@string/bookmarks"
69       android:uiOptions="none"
70       android:windowSoftInputMode="adjustNothing" >
71     </activity>
72
73     <activity
74       android:name=".activities.HistoryActivity"
75       android:label="@string/history"
76       android:uiOptions="none"
77       android:windowSoftInputMode="adjustNothing" >
78     </activity>
79
80     <activity
81       android:name=".activities.SearchActivity"
82       android:label="@string/search"
83       android:launchMode="singleTop"
84       android:uiOptions="none"
85       android:windowSoftInputMode="adjustNothing" >
86     </activity>
87
88     <activity
89       android:name=".activities.preferences.SettingsPreferences"
90       android:label="@string/pref"
91       android:icon="@drawable/ic_launcher_settings"
92       android:exported="false">
93       <intent-filter>
94          <category android:name="android.intent.category.PREFERENCE" />
95       </intent-filter>
96     </activity>
97
98   </application>
99
100 </manifest>