|
19 | 19 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
20 | 20 | package="org.brandroid.openmanager" |
21 | 21 | android:installLocation="auto" |
22 | | - android:versionCode="228" |
23 | | - android:versionName="0.228" > |
| 22 | + android:versionCode="254" |
| 23 | + android:versionName="0.254" > |
24 | 24 |
|
25 | 25 | <uses-sdk |
26 | 26 | android:minSdkVersion="8" |
|
60 | 60 | android:name="org.brandroid.openmanager.activities.OpenApplication" |
61 | 61 | android:allowBackup="true" |
62 | 62 | android:icon="@drawable/icon_flat" |
63 | | - android:label="@string/app_name" |
| 63 | + android:label="@string/app_name" |
64 | 64 | android:largeHeap="true" |
65 | 65 | android:theme="@style/AppTheme.Dark" > |
66 | 66 | <activity |
|
129 | 129 | <activity |
130 | 130 | android:name="org.brandroid.openmanager.activities.ServerSetupActivity" |
131 | 131 | android:uiOptions="none" |
| 132 | + android:theme="@style/AppTheme.Dialog" |
| 133 | + android:exported="true" |
132 | 134 | android:configChanges="screenSize|keyboard|keyboardHidden" > |
133 | 135 | </activity> |
134 | 136 | <activity |
|
158 | 160 | <activity |
159 | 161 | android:name="org.brandroid.openmanager.activities.FolderPickerActivity" |
160 | 162 | android:configChanges="screenSize|keyboard|keyboardHidden" |
161 | | - android:label="@string/s_title_picker" > |
| 163 | + android:exported="true" > |
| 164 | + <intent-filter> |
| 165 | + <action android:name="android.intent.action.GET_CONTENT" /> |
| 166 | + <category android:name="android.intent.category.OPENABLE" /> |
| 167 | + <category android:name="android.intent.category.DEFAULT" /> |
| 168 | + <data android:mimeType="*/*" /> |
| 169 | + </intent-filter> |
162 | 170 | <intent-filter> |
163 | 171 | <action android:name="android.intent.action.PICK" /> |
164 | | - |
165 | 172 | <category android:name="android.intent.category.DEFAULT" /> |
166 | | - |
167 | | - <data android:scheme="file" /> |
168 | | - <data android:mimeType="*/*" /> |
| 173 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 174 | + <data android:scheme="file" /> |
| 175 | + <data android:scheme="folder" /> |
| 176 | + <data android:scheme="directory" /> |
169 | 177 | </intent-filter> |
170 | 178 | <intent-filter> |
171 | 179 | <action android:name="org.openintents.action.PICK_FILE" /> |
172 | | - |
173 | 180 | <category android:name="android.intent.category.DEFAULT" /> |
174 | | - |
175 | | - <data android:scheme="file" /> |
176 | | - <data android:mimeType="*/*" /> |
| 181 | + <category android:name="android.intent.category.BROWSABLE" /> |
| 182 | + <data android:scheme="file" /> |
| 183 | + <data android:scheme="folder" /> |
| 184 | + <data android:scheme="directory" /> |
177 | 185 | </intent-filter> |
178 | 186 | </activity> |
179 | 187 |
|
|
215 | 223 | <activity |
216 | 224 | android:name="org.brandroid.openmanager.activities.SettingsActivity" |
217 | 225 | android:exported="false" |
| 226 | + android:theme="@style/AppTheme.Dark" |
218 | 227 | android:label="@string/s_menu_prefs_global" > |
219 | 228 | <intent-filter> |
220 | 229 | <action android:name="android.intent.action.VIEW" /> |
|
0 commit comments