1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" eu.alefzero.owncloud"
2
+ <!--
3
+ ownCloud Android client application
4
+
5
+ Copyright (C) 2012 Bartek Przybylski
6
+ This program is free software: you can redistribute it and/or modify
7
+ it under the terms of the GNU General Public License as published by
8
+ the Free Software Foundation, either version 3 of the License, or
9
+ (at your option) any later version.
10
+
11
+ This program is distributed in the hope that it will be useful,
12
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ GNU General Public License for more details.
15
+
16
+ You should have received a copy of the GNU General Public License
17
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
18
+ -->
19
+ <manifest package =" eu.alefzero.owncloud"
4
20
android : versionCode =" 1"
5
- android : versionName =" 1.0" >
21
+ android : versionName =" 1.0" xmlns : android = " http://schemas.android.com/apk/res/android " >
6
22
7
23
<uses-permission android : name =" android.permission.GET_ACCOUNTS" />
8
24
<uses-permission android : name =" android.permission.USE_CREDENTIALS" />
15
31
<uses-permission android : name =" android.permission.WRITE_SYNC_SETTINGS" />
16
32
<uses-permission android : name =" android.permission.ACCESS_FINE_LOCATION" />
17
33
<uses-permission android : name =" android.permission.BROADCAST_STICKY" />
34
+ <uses-permission android : name =" android.permission.ACCESS_NETWORK_STATE" />
18
35
19
36
<uses-sdk
20
37
android : minSdkVersion =" 8"
27
44
28
45
<application
29
46
android : icon =" @drawable/icon"
30
- android : label =" @string/app_name" >
47
+ android : label =" @string/app_name"
48
+ android : theme =" @style/Theme.ownCloud"
49
+ android : uiOptions =" splitActionBarWhenNarrow" >
31
50
<activity
32
51
android : name =" .ui.activity.FileDisplayActivity"
33
- android : label =" @string/app_name"
34
- android : theme =" @style/Theme.ownCloud" >
52
+ android : label =" @string/app_name" >
35
53
<intent-filter >
36
54
<action android : name =" android.intent.action.MAIN" />
37
55
69
87
70
88
<service
71
89
android : name =" .authenticator.AccountAuthenticatorService"
72
- android : exported =" true" >
90
+ android : exported =" true" >
73
91
<intent-filter >
74
92
<action android : name =" android.accounts.AccountAuthenticator" />
75
93
</intent-filter >
102
120
<activity
103
121
android : name =" .ui.activity.AuthenticatorActivity"
104
122
android : exported =" true"
105
- android : theme =" @style/Theme.ownCloud" >
123
+ android : theme =" @style/Theme.ownCloud.noActionBar " >
106
124
</activity >
107
125
108
126
<service android : name =" .FileDownloader" >
125
143
<activity
126
144
android : name =" .ui.activity.FileDetailActivity"
127
145
android : theme =" @style/Theme.ownCloud" >
128
- </activity >
146
+ </activity >
147
+ <activity android : name =" .extensions.ExtensionsAvailableActivity" ></activity >
148
+ <activity android : name =" .extensions.ExtensionsListActivity" ></activity >
149
+ <activity android : name =" .ui.activity.AccountSelectActivity" android : uiOptions =" none" android : label =" @string/prefs_accounts" ></activity >
129
150
</application >
130
151
131
152
</manifest >
0 commit comments