2021-10-18 12:48:39 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2016-12-05 15:57:17 +03:00
|
|
|
Nextcloud Android client application
|
2013-04-01 00:43:46 +04:00
|
|
|
|
|
|
|
Copyright (C) 2012 Bartek Przybylski
|
2016-06-27 14:54:50 +03:00
|
|
|
Copyright (C) 2012-2016 ownCloud Inc.
|
|
|
|
Copyright (C) 2016 Nextcloud
|
2013-04-01 00:43:46 +04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
2013-04-17 14:26:13 +04:00
|
|
|
it under the terms of the GNU General Public License version 2,
|
|
|
|
as published by the Free Software Foundation.
|
2013-04-01 00:43:46 +04:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-10-14 13:58:07 +03:00
|
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-24 11:06:25 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="com.owncloud.android">
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2018-01-09 11:23:25 +03:00
|
|
|
<!-- GET_ACCOUNTS is needed for API <= 22.
|
2016-02-16 15:59:49 +03:00
|
|
|
For API >= 23 results in the addition of CONTACTS group to the list of permissions that may be
|
|
|
|
dynamically disabled or enabled by the user after installation; but it is not important,
|
|
|
|
since GET_ACCOUNTS is an special case, the permission is not really needed to access accounts
|
|
|
|
owned by the app, our use case.
|
|
|
|
See note in http://developer.android.com/intl/es/reference/android/Manifest.permission.html#GET_ACCOUNTS -->
|
2018-01-09 11:23:25 +03:00
|
|
|
<uses-permission
|
2021-10-18 12:48:39 +03:00
|
|
|
android:name="android.permission.GET_ACCOUNTS"
|
|
|
|
android:maxSdkVersion="22" />
|
2016-02-16 15:59:49 +03:00
|
|
|
|
2021-10-18 12:48:39 +03:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
2017-04-12 15:34:43 +03:00
|
|
|
|
2018-01-09 11:23:25 +03:00
|
|
|
<!-- USE_CREDENTIALS, MANAGE_ACCOUNTS and AUTHENTICATE_ACCOUNTS are needed for API <= 22.
|
|
|
|
In API >= 23 they do not exist anymore -->
|
|
|
|
<uses-permission
|
2021-10-18 12:48:39 +03:00
|
|
|
android:name="android.permission.USE_CREDENTIALS"
|
|
|
|
android:maxSdkVersion="22" />
|
2018-01-09 11:23:25 +03:00
|
|
|
<uses-permission
|
2021-10-18 12:48:39 +03:00
|
|
|
android:name="android.permission.MANAGE_ACCOUNTS"
|
|
|
|
android:maxSdkVersion="22" />
|
2018-01-09 11:23:25 +03:00
|
|
|
<uses-permission
|
2021-10-18 12:48:39 +03:00
|
|
|
android:name="android.permission.AUTHENTICATE_ACCOUNTS"
|
|
|
|
android:maxSdkVersion="22" />
|
2016-02-16 15:59:49 +03:00
|
|
|
|
|
|
|
<!-- WRITE_EXTERNAL_STORAGE may be enabled or disabled by the user after installation in
|
|
|
|
API >= 23; the app needs to handle this -->
|
2021-10-08 16:42:36 +03:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2018-11-29 12:37:30 +03:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
2019-01-21 10:16:47 +03:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2016-02-16 15:59:49 +03:00
|
|
|
|
2018-01-09 11:23:25 +03:00
|
|
|
<!-- Next permissions are always approved in installation time, the apps needs to do nothing special in runtime -->
|
2013-04-01 00:43:46 +04:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_STATS" />
|
|
|
|
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2015-10-14 13:58:07 +03:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2017-02-05 16:40:24 +03:00
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
2018-03-07 14:12:58 +03:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
2018-12-12 13:46:16 +03:00
|
|
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2018-10-12 15:03:41 +03:00
|
|
|
<!-- Apps that target Android 9 (API level 28) or higher and use foreground services
|
|
|
|
must request the FOREGROUND_SERVICE permission -->
|
2021-10-18 12:48:39 +03:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
2018-05-19 00:15:37 +03:00
|
|
|
|
2019-05-28 11:01:41 +03:00
|
|
|
<!-- Some Chromebooks don't support touch. Although not essential,
|
|
|
|
it's a good idea to explicitly include this declaration. -->
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.touchscreen"
|
|
|
|
android:required="false" />
|
|
|
|
|
|
|
|
<uses-feature
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
android:required="false" />
|
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<application
|
2013-10-17 18:54:43 +04:00
|
|
|
android:name=".MainApp"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:fullBackupContent="@xml/backup_config"
|
2017-12-27 11:21:57 +03:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:installLocation="internalOnly"
|
2013-04-01 00:43:46 +04:00
|
|
|
android:label="@string/app_name"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:manageSpaceActivity="com.owncloud.android.ui.activity.ManageSpaceActivity"
|
2017-07-16 23:08:51 +03:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher"
|
2017-12-01 14:40:50 +03:00
|
|
|
android:supportsRtl="true"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Toolbar"
|
2019-06-14 08:11:11 +03:00
|
|
|
android:usesCleartextTraffic="true"
|
2018-04-24 11:06:25 +03:00
|
|
|
tools:ignore="UnusedAttribute">
|
2018-12-18 13:02:03 +03:00
|
|
|
|
|
|
|
<uses-library
|
|
|
|
android:name="org.apache.http.legacy"
|
|
|
|
android:required="false" />
|
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.FileDisplayActivity"
|
2017-05-19 12:34:49 +03:00
|
|
|
android:configChanges="orientation|screenSize"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
2018-04-09 22:58:21 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Launcher">
|
2013-04-01 00:43:46 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2015-10-14 13:58:07 +03:00
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2018-05-13 23:39:10 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
2020-01-28 19:07:26 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2021-10-18 12:48:39 +03:00
|
|
|
|
2020-01-28 19:07:26 +03:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2021-10-18 12:48:39 +03:00
|
|
|
|
2020-05-21 01:12:34 +03:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
<data android:host="*" />
|
|
|
|
<data android:pathPattern="/f/..*" />
|
|
|
|
<data android:pathPattern="/..*/f/..*" />
|
2020-05-21 04:07:24 +03:00
|
|
|
<data android:pathPattern="/..*/..*/f/..*" />
|
|
|
|
<data android:pathPattern="/..*/..*/..*/f/..*" />
|
2020-01-28 19:07:26 +03:00
|
|
|
</intent-filter>
|
2021-10-18 12:48:39 +03:00
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/users_and_groups_searchable" />
|
2013-04-01 00:43:46 +04:00
|
|
|
</activity>
|
2021-10-18 12:48:39 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ManageAccountsActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.UserInfoActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.NotificationsActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.CommunityActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activities.ActivitiesActivity"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.SyncedFoldersActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
android:name="com.nextcloud.client.jobs.MediaFoldersDetectionWork$NotificationReceiver"
|
|
|
|
android:exported="false" />
|
|
|
|
<receiver
|
|
|
|
android:name="com.nextcloud.client.jobs.NotificationWork$NotificationReceiver"
|
|
|
|
android:exported="false" />
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.UploadFilesActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ExternalSiteWebView"
|
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="false" />
|
2018-07-11 15:57:02 +03:00
|
|
|
<activity
|
2019-11-01 14:09:08 +03:00
|
|
|
android:name=".ui.activity.RichDocumentsEditorWebView"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="false" />
|
2019-11-01 14:09:08 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.TextEditorWebView"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ContactsPreferenceActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:launchMode="singleInstance" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ReceiveExternalFilesActivity"
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
android:exported="true"
|
|
|
|
android:taskAffinity=""
|
|
|
|
android:theme="@style/Theme.ownCloud.NoActionBar">
|
2013-04-01 00:43:46 +04:00
|
|
|
<intent-filter>
|
2015-10-14 13:58:07 +03:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
2013-04-01 00:43:46 +04:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2015-10-14 13:58:07 +03:00
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="*/*" />
|
2014-10-24 00:34:25 +04:00
|
|
|
</intent-filter>
|
2013-04-01 00:43:46 +04:00
|
|
|
</activity>
|
|
|
|
<activity
|
2019-03-05 13:34:50 +03:00
|
|
|
android:name=".ui.activity.SettingsActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.ownCloud" />
|
2015-10-14 13:58:07 +03:00
|
|
|
<activity
|
2015-08-06 20:04:22 +03:00
|
|
|
android:name=".ui.preview.PreviewImageActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2015-10-14 13:58:07 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Overlay" />
|
|
|
|
<activity
|
2014-02-26 14:05:25 +04:00
|
|
|
android:name=".ui.preview.PreviewVideoActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2014-10-24 00:34:25 +04:00
|
|
|
android:label="@string/app_name"
|
2015-10-14 13:58:07 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Fullscreen" />
|
2013-04-01 00:43:46 +04:00
|
|
|
|
|
|
|
<service
|
2013-04-25 21:39:22 +04:00
|
|
|
android:name=".authentication.AccountAuthenticatorService"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter android:priority="100">
|
2013-04-01 00:43:46 +04:00
|
|
|
<action android:name="android.accounts.AccountAuthenticator" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.accounts.AccountAuthenticator"
|
|
|
|
android:resource="@xml/authenticator" />
|
|
|
|
</service>
|
2017-05-05 21:38:49 +03:00
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<service
|
|
|
|
android:name=".syncadapter.FileSyncService"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="true">
|
2013-04-01 00:43:46 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.content.SyncAdapter" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="android.content.SyncAdapter"
|
|
|
|
android:resource="@xml/syncadapter_files" />
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<provider
|
|
|
|
android:name=".providers.FileContentProvider"
|
2013-10-17 18:54:43 +04:00
|
|
|
android:authorities="@string/authority"
|
2013-04-01 00:43:46 +04:00
|
|
|
android:enabled="true"
|
2015-12-19 15:30:37 +03:00
|
|
|
android:exported="true"
|
2013-04-01 00:43:46 +04:00
|
|
|
android:label="@string/sync_string_files"
|
2019-01-08 14:14:31 +03:00
|
|
|
android:syncable="true">
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/shares"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/capabilities"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/uploads"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/synced_folders"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/external_links"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/arbitrary_data"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/virtual"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
<path-permission
|
|
|
|
android:pathPrefix="/filesystem"
|
|
|
|
android:readPermission="false"
|
|
|
|
android:writePermission="false" />
|
|
|
|
</provider>
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2015-10-19 16:12:24 +03:00
|
|
|
<provider
|
|
|
|
android:name=".providers.UsersAndGroupsSearchProvider"
|
2017-02-25 05:47:31 +03:00
|
|
|
android:authorities="@string/users_and_groups_search_authority"
|
2015-10-19 16:12:24 +03:00
|
|
|
android:enabled="true"
|
|
|
|
android:exported="false"
|
2020-06-24 11:58:24 +03:00
|
|
|
android:label="@string/share_search" />
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2015-12-19 15:30:37 +03:00
|
|
|
<provider
|
2017-05-11 22:30:51 +03:00
|
|
|
android:name=".providers.DocumentsStorageProvider"
|
2016-07-15 01:42:33 +03:00
|
|
|
android:authorities="@string/document_provider_authority"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:enabled="true"
|
2015-12-19 15:30:37 +03:00
|
|
|
android:exported="true"
|
|
|
|
android:grantUriPermissions="true"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:permission="android.permission.MANAGE_DOCUMENTS">
|
2015-12-19 15:30:37 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" />
|
|
|
|
</intent-filter>
|
|
|
|
</provider>
|
2013-04-01 00:43:46 +04:00
|
|
|
|
2016-08-31 13:57:24 +03:00
|
|
|
<!-- new provider used to generate URIs without file:// scheme (forbidden from Android 7) -->
|
|
|
|
<provider
|
2018-12-07 15:28:35 +03:00
|
|
|
android:name="androidx.core.content.FileProvider"
|
2016-08-31 13:57:24 +03:00
|
|
|
android:authorities="@string/file_provider_authority"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
|
|
|
android:grantUriPermissions="true">
|
2016-08-31 13:57:24 +03:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
android:resource="@xml/exposed_filepaths" />
|
|
|
|
</provider>
|
|
|
|
|
2017-10-24 12:03:28 +03:00
|
|
|
<provider
|
|
|
|
android:name=".providers.DiskLruImageCacheFileProvider"
|
2017-10-24 15:22:53 +03:00
|
|
|
android:authorities="@string/image_cache_provider_authority"
|
2019-04-18 12:16:12 +03:00
|
|
|
android:grantUriPermissions="true"
|
2021-10-12 13:19:37 +03:00
|
|
|
android:permission="android.permission.MANAGE_DOCUMENTS"
|
|
|
|
android:exported="true">
|
|
|
|
</provider>
|
2017-10-24 12:03:28 +03:00
|
|
|
|
2019-09-14 18:45:15 +03:00
|
|
|
<!-- Disable WorkManager initialization. Whoever designed this, should pay closer attention -->
|
|
|
|
<!-- to "best before" dates in his fridge. -->
|
|
|
|
<provider
|
|
|
|
android:name="androidx.work.impl.WorkManagerInitializer"
|
|
|
|
android:authorities=".workmanager-init"
|
|
|
|
android:exported="false"
|
|
|
|
tools:node="remove" />
|
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<activity
|
2013-04-25 21:39:22 +04:00
|
|
|
android:name=".authentication.AuthenticatorActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
2013-04-01 00:43:46 +04:00
|
|
|
android:exported="true"
|
2015-10-14 13:58:07 +03:00
|
|
|
android:launchMode="singleTask"
|
2016-09-27 01:32:46 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.noActionBar.Login">
|
2013-04-01 00:43:46 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.owncloud.android.workaround.accounts.CREATE" />
|
2015-10-14 13:58:07 +03:00
|
|
|
|
2013-04-01 00:43:46 +04:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2018-11-29 12:37:30 +03:00
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".authentication.DeepLinkLoginActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:clearTaskOnLaunch="true"
|
2018-11-29 12:37:30 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="true"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:theme="@style/Theme.ownCloud.noActionBar.Login">
|
2016-09-08 20:34:39 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2018-11-29 12:37:30 +03:00
|
|
|
|
2016-09-08 20:34:39 +03:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2018-11-29 12:37:30 +03:00
|
|
|
|
|
|
|
<data
|
|
|
|
android:host="login"
|
|
|
|
android:scheme="@string/login_data_own_scheme" />
|
2016-09-08 20:34:39 +03:00
|
|
|
</intent-filter>
|
2013-04-01 00:43:46 +04:00
|
|
|
</activity>
|
|
|
|
|
2021-10-18 12:48:39 +03:00
|
|
|
<service
|
|
|
|
android:name=".services.OperationsService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name=".files.services.FileDownloader"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name="com.nextcloud.client.files.downloader.FileTransferService"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name=".files.services.FileUploader"
|
|
|
|
android:exported="false" />
|
|
|
|
<service
|
|
|
|
android:name="com.nextcloud.client.media.PlayerService"
|
|
|
|
android:exported="false" />
|
2014-10-24 00:34:25 +04:00
|
|
|
|
2019-04-16 17:46:45 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.PassCodeActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2019-04-16 17:46:45 +03:00
|
|
|
android:launchMode="singleTask" />
|
2018-10-31 12:23:59 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.RequestCredentialsActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2018-10-31 12:23:59 +03:00
|
|
|
android:launchMode="singleTask" />
|
2021-10-18 12:48:39 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ConflictsResolveActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ErrorsWhileCopyingHandlerActivity"
|
|
|
|
android:exported="false" />
|
2018-10-11 20:29:59 +03:00
|
|
|
|
2021-10-18 12:48:39 +03:00
|
|
|
<activity
|
|
|
|
android:name="com.nextcloud.client.logger.ui.LogsActivity"
|
|
|
|
android:exported="false" />
|
2014-11-07 17:26:21 +03:00
|
|
|
|
2021-10-18 12:48:39 +03:00
|
|
|
<activity
|
|
|
|
android:name="com.nextcloud.client.errorhandling.ShowErrorActivity"
|
2019-07-30 22:40:33 +03:00
|
|
|
android:excludeFromRecents="true"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2019-07-30 22:40:33 +03:00
|
|
|
android:finishOnTaskLaunch="true"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:process=":crash"
|
|
|
|
android:theme="@style/Theme.ownCloud.Toolbar" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.UploadListActivity"
|
|
|
|
android:exported="false" />
|
2018-05-02 13:49:25 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.trashbin.TrashbinActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
android:exported="true" />
|
|
|
|
<activity
|
|
|
|
android:name="com.nextcloud.client.onboarding.WhatsNewActivity"
|
|
|
|
android:theme="@style/Theme.ownCloud.noActionBar.Login" />
|
2018-05-02 12:25:53 +03:00
|
|
|
<activity
|
2019-05-19 13:07:39 +03:00
|
|
|
android:name="com.nextcloud.client.onboarding.FirstRunActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:configChanges="orientation|screenSize"
|
|
|
|
android:exported="false"
|
|
|
|
android:theme="@style/Theme.ownCloud.noActionBar.Login" />
|
2015-10-14 13:58:07 +03:00
|
|
|
|
2021-10-18 12:48:39 +03:00
|
|
|
<receiver
|
|
|
|
android:name=".files.BootupBroadcastReceiver"
|
|
|
|
android:exported="true">
|
2013-04-01 00:43:46 +04:00
|
|
|
<intent-filter>
|
2014-10-24 00:34:25 +04:00
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
2021-10-18 12:48:39 +03:00
|
|
|
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
|
|
|
|
<action android:name="com.htc.intent.action.QUICKBOOT_POWERON" />
|
|
|
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
2013-04-01 00:43:46 +04:00
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2017-02-19 20:53:35 +03:00
|
|
|
|
2014-10-24 00:34:25 +04:00
|
|
|
<activity
|
2015-10-14 13:58:07 +03:00
|
|
|
android:name=".ui.activity.CopyToClipboardActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2018-07-03 15:33:26 +03:00
|
|
|
android:icon="@drawable/shared_via_link"
|
2015-10-14 13:58:07 +03:00
|
|
|
android:label="@string/copy_link" />
|
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.FolderPickerActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2015-10-14 13:58:07 +03:00
|
|
|
android:label="@string/app_name" />
|
2018-07-11 15:57:02 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.FilePickerActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2018-07-11 15:57:02 +03:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:launchMode="singleTop"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Dialog.NoTitle"
|
|
|
|
android:windowSoftInputMode="adjustResize" />
|
2015-10-14 13:58:07 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ShareActivity"
|
2017-11-20 15:15:16 +03:00
|
|
|
android:exported="false"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:label="@string/share_dialog_title"
|
2015-10-20 14:18:47 +03:00
|
|
|
android:launchMode="singleTop"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Dialog.NoTitle"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
2015-10-15 20:24:16 +03:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
2021-10-18 12:48:39 +03:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/users_and_groups_searchable" />
|
2015-10-14 13:58:07 +03:00
|
|
|
</activity>
|
2021-10-18 12:48:39 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.ManageSpaceActivity"
|
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/manage_space_title"
|
|
|
|
android:theme="@style/Theme.ownCloud" />
|
2017-06-16 11:22:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".services.AccountManagerService"
|
|
|
|
android:enabled="true"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false" />
|
2017-06-16 11:22:02 +03:00
|
|
|
|
2018-09-12 15:38:43 +03:00
|
|
|
<activity
|
|
|
|
android:name=".ui.activity.SsoGrantPermissionActivity"
|
2018-09-13 19:15:43 +03:00
|
|
|
android:exported="true"
|
|
|
|
android:theme="@style/Theme.ownCloud.Dialog.NoTitle" />
|
2019-06-10 23:28:37 +03:00
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name="com.nextcloud.client.etm.EtmActivity"
|
2021-10-18 12:48:39 +03:00
|
|
|
android:exported="false"
|
2020-11-13 12:12:47 +03:00
|
|
|
android:theme="@style/Theme.ownCloud.Toolbar" />
|
2013-04-01 00:43:46 +04:00
|
|
|
</application>
|
2013-05-06 12:48:43 +04:00
|
|
|
|
2020-11-13 12:12:47 +03:00
|
|
|
<queries>
|
|
|
|
<package android:name="it.niedermann.nextcloud.deck" />
|
|
|
|
<package android:name="it.niedermann.nextcloud.deck.play" />
|
|
|
|
<package android:name="it.niedermann.nextcloud.deck.dev" />
|
|
|
|
</queries>
|
2018-09-13 18:10:20 +03:00
|
|
|
</manifest>
|