OSDN Git Service

Provider and model for associations (file, intents, ...)
[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     <provider
52       android:name=".providers.AssociationsContentProvider"
53       android:authorities="com.cyanogenmod.explorer.providers.associations"
54       android:exported="false" />
55
56     <activity
57       android:name=".activities.NavigationActivity"
58       android:label="@string/app_name"
59       android:launchMode="singleTop"
60       android:uiOptions="none"
61       android:windowSoftInputMode="adjustNothing" >
62       <intent-filter>
63         <action android:name="android.intent.action.MAIN" />
64         <category android:name="android.intent.category.LAUNCHER" />
65         <category android:name="android.intent.category.DEFAULT" />
66       </intent-filter>
67       <intent-filter>
68         <action android:name="android.intent.action.SEARCH" />
69         <category android:name="android.intent.category.DEFAULT" />
70       </intent-filter>
71       <meta-data
72         android:name="android.app.searchable"
73         android:resource="@xml/searchable" />
74     </activity>
75
76     <activity
77       android:name=".activities.BookmarksActivity"
78       android:label="@string/bookmarks"
79       android:uiOptions="none"
80       android:windowSoftInputMode="adjustNothing" >
81     </activity>
82
83     <activity
84       android:name=".activities.HistoryActivity"
85       android:label="@string/history"
86       android:uiOptions="none"
87       android:windowSoftInputMode="adjustNothing" >
88     </activity>
89
90     <activity
91       android:name=".activities.SearchActivity"
92       android:label="@string/search"
93       android:launchMode="singleTop"
94       android:uiOptions="none"
95       android:windowSoftInputMode="adjustNothing" >
96     </activity>
97
98     <activity
99       android:name=".activities.preferences.SettingsPreferences"
100       android:label="@string/pref"
101       android:icon="@drawable/ic_launcher_settings"
102       android:exported="false">
103       <intent-filter>
104          <category android:name="android.intent.category.PREFERENCE" />
105       </intent-filter>
106     </activity>
107
108   </application>
109
110 </manifest>