├── .codecov.yml ├── .devcontainer ├── Dockerfile ├── Dockerfile.license ├── README.md ├── devcontainer.env ├── devcontainer.env.license ├── devcontainer.json └── devcontainer.json.license ├── .drone.yml ├── .editorconfig ├── .github ├── .config.yml ├── .config.yml.license ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── bug_report.yml.license │ ├── config.yml │ ├── config.yml.license │ ├── feature_request.md │ └── feature_request.md.license ├── pull_request_template.md ├── pull_request_template.md.license └── workflows │ ├── analysis.yml │ ├── assembleFlavors.yml │ ├── autoApproveSync.yml │ ├── check.yml │ ├── codeql.yml │ ├── detectNewJavaFiles.yml │ ├── detectWrongSettings.yml │ ├── pr-feedback.yml │ ├── qa.yml │ ├── renovate-approve-merge.yml │ ├── reuse.yml │ ├── scorecard.yml │ ├── screenShotTest.yml │ ├── stale.yml │ └── unit-tests.yml ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── copyright │ ├── Nextcloud___Android_Client.xml │ └── profiles_settings.xml ├── icon.svg └── inspectionProfiles │ ├── ktlint.xml │ └── profiles_settings.xml ├── .pullapprove.yml ├── .tx ├── config └── config.license ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.license ├── Gemfile.lock ├── Gemfile.lock.license ├── LICENSE.txt ├── LICENSES ├── AGPL-3.0-or-later.txt ├── Apache-2.0.txt ├── BSD-2-Clause.txt ├── CC0-1.0.txt ├── GPL-2.0-only.txt ├── GPL-3.0-or-later.txt ├── LGPL-2.1-or-later.txt ├── LicenseRef-NextcloudTrademarks.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── SECURITY.md ├── SETUP.md ├── app ├── .gitignore ├── build.gradle ├── detekt.yml ├── lint.xml ├── schemas │ └── com.nextcloud.client.database.NextcloudDatabase │ │ ├── 65.json │ │ ├── 66.json │ │ ├── 67.json │ │ ├── 68.json │ │ ├── 69.json │ │ ├── 70.json │ │ ├── 71.json │ │ ├── 72.json │ │ ├── 73.json │ │ ├── 74.json │ │ ├── 75.json │ │ ├── 76.json │ │ ├── 77.json │ │ ├── 78.json │ │ ├── 79.json │ │ ├── 80.json │ │ ├── 81.json │ │ ├── 82.json │ │ ├── 83.json │ │ ├── 84.json │ │ ├── 85.json │ │ ├── 86.json │ │ ├── 87.json │ │ ├── 88.json │ │ └── 89.json ├── screenshots │ └── gplay │ │ └── debug │ │ ├── com.nextcloud.client.ActivitiesActivityIT_empty.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_empty_light_white.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_error.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_error_light_white.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_loading.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_black.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_blue.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_white.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_black.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_white.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_showActivities.png │ │ ├── com.nextcloud.client.ActivitiesActivityIT_showActivities_light_white.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login_dark_black.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login_dark_blue.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login_dark_white.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login_light_black.png │ │ ├── com.nextcloud.client.AuthenticatorActivityIT_login_light_white.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open_dark_black.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open_dark_blue.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open_dark_white.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open_light_black.png │ │ ├── com.nextcloud.client.CommunityActivityIT_open_light_white.png │ │ ├── com.nextcloud.client.FileDisplayActivityIT_shareToCircle.png │ │ ├── com.nextcloud.client.FileDisplayActivityIT_showAccounts.png │ │ ├── com.nextcloud.client.FileDisplayActivityIT_showShares.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_black.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_blue.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_white.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_black.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_white.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_black.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_blue.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_white.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_black.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_white.png │ │ ├── com.nextcloud.client.FileDisplayActivityScreenshotIT_showMediaThenAllFiles.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open_dark_black.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open_dark_blue.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open_dark_white.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open_light_black.png │ │ ├── com.nextcloud.client.FirstRunActivityIT_open_light_white.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open_dark_black.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open_dark_blue.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open_dark_white.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open_light_black.png │ │ ├── com.nextcloud.client.SettingsActivityIT_open_light_white.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_black.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_blue.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_white.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_black.png │ │ ├── com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_openDrawer.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_blue.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_light_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open_dark_black.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open_dark_blue.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open_dark_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open_light_black.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_open_light_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_showPowerCheckDialog.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_black.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_blue.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_white.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_black.png │ │ ├── com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_white.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_black.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_blue.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_white.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_black.png │ │ ├── com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_white.png │ │ ├── com.nextcloud.client.etm.EtmActivityTest_accounts.png │ │ ├── com.nextcloud.client.etm.EtmActivityTest_overview.png │ │ ├── com.nextcloud.ui.BitmapIT_glideSVG.png │ │ ├── com.nextcloud.ui.BitmapIT_roundBitmap.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_light_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_light_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles_light_black.png │ │ ├── com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles_light_white.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference_light_black.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openContactsPreference_light_white.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_black.png │ │ ├── com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_white.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_black.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_white.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_black.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_white.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_testChooseLocationAction.png │ │ ├── com.owncloud.android.ui.activity.FolderPickerActivityIT_testMoveOrCopy.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_black.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_white.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_dark_black.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_dark_white.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_light_black.png │ │ ├── com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_light_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications_dark_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications_dark_white.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications_light_black.png │ │ ├── com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications_light_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_white.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_black.png │ │ ├── com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_white.png │ │ ├── com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_open.png │ │ ├── com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_openMultiAccount.png │ │ ├── com.owncloud.android.ui.activity.UploadFilesActivityIT_localFolderPickerMode.png │ │ ├── com.owncloud.android.ui.activity.UploadFilesActivityIT_noneSelected.png │ │ ├── com.owncloud.android.ui.activity.UploadFilesActivityIT_open.png │ │ ├── com.owncloud.android.ui.activity.UploadFilesActivityIT_search.png │ │ ├── com.owncloud.android.ui.activity.UploadFilesActivityIT_selectAll.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_black.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_blue.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_white.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_black.png │ │ ├── com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialogWithStatusDisabled_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testConfirmationDialogWithOneAction.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testConfirmationDialogWithThreeAction.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testConfirmationDialogWithThreeActionRTL.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testConfirmationDialogWithTwoAction.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testEnforcedPasswordDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testFileActionsBottomSheet.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testOptionalPasswordDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testProfileBottomSheet.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testSslUntrustedCertDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentIT_testStoragePermissionDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testAccountChooserDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testLoadingDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testNewFolderDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFileDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFilesDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFolderDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFoldersDialog.png │ │ ├── com.owncloud.android.ui.dialog.DialogFragmentTest_testRenameFileDialog.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialogDifferentTypes_Screenshot.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_Screenshot.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_black.png │ │ ├── com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_white.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_black.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_white.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic_dark_black.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic_dark_blue.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic_dark_white.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic_light_black.png │ │ ├── com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic_light_white.png │ │ ├── com.owncloud.android.ui.dialog.SyncFileNotEnoughSpaceDialogFragmentTest_showNotEnoughSpaceDialogForFile.png │ │ ├── com.owncloud.android.ui.dialog.SyncFileNotEnoughSpaceDialogFragmentTest_showNotEnoughSpaceDialogForFolder.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_black.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_white.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_black.png │ │ ├── com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_white.png │ │ ├── com.owncloud.android.ui.fragment.BackupListFragmentIT_showCalendarAndContactsList.png │ │ ├── com.owncloud.android.ui.fragment.BackupListFragmentIT_showCalendarList.png │ │ ├── com.owncloud.android.ui.fragment.BackupListFragmentIT_showContactList.png │ │ ├── com.owncloud.android.ui.fragment.BackupListFragmentIT_showLoading.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading_light_black.png │ │ ├── com.owncloud.android.ui.fragment.ContactListFragmentIT_showContactListFragmentLoading_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesError_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivitiesNone_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsActivities_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetailsSharing_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetails_Activities.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showDetails_Sharing.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailActivitiesFragment_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailDetailsFragment.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailFragmentStaticServerIT_showFileDetailSharingFragment_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesDownloadLimit.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileAllShareTypes_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed_light_black.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileResharingNotAllowed_light_white.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listShares_file_allShareTypes.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listShares_file_none.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listShares_file_resharing_not_allowed.png │ │ ├── com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_publicLink_optionMenu.png │ │ ├── com.owncloud.android.ui.fragment.GalleryFragmentIT_showEmpty.png │ │ ├── com.owncloud.android.ui.fragment.GalleryFragmentIT_showGallery.png │ │ ├── com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showEmpty.png │ │ ├── com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolder.png │ │ ├── com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolders.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToCircle.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToGroup.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToUser.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareViaLink.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles_light_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles_light_white.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFolderTypes.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showOneFile.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace_light_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showRichWorkspace_light_white.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles_dark_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles_dark_blue.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles_dark_white.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles_light_black.png │ │ ├── com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showSharedFiles_light_white.png │ │ ├── com.owncloud.android.ui.fragment.SharedListFragmentIT_showSharedFiles.png │ │ ├── com.owncloud.android.ui.preview.PreviewBitmapScreenshotIT_showBitmap.png │ │ ├── com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage.png │ │ ├── com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage_dark_blue.png │ │ ├── com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage.png │ │ ├── com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage_dark_blue.png │ │ ├── com.owncloud.android.ui.preview.PreviewTextFileFragmentTest_displayJavaSnippetFile.png │ │ ├── com.owncloud.android.ui.preview.PreviewTextFileFragmentTest_displaySimpleTextFile.png │ │ ├── com.owncloud.android.ui.preview.pdf.PreviewPdfFragmentScreenshotIT_showPdf.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_differentUser.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_blue.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_blue.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_blue.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_blue.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_black.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_white.png │ │ ├── com.owncloud.android.ui.trashbin.TrashbinActivityIT_normalUser.png │ │ ├── richworkspaces_dark.png │ │ └── richworkspaces_light.png └── src │ ├── androidTest │ ├── AndroidManifest.xml │ ├── assets │ │ ├── calendar.ics │ │ ├── christine.jpg │ │ ├── credentials.json │ │ ├── decrypted.json │ │ ├── encrypted.json │ │ ├── encrypted │ │ │ ├── ia7OEEEyXMoRa1QWQk8r │ │ │ └── n9WXAIXO2wRY4R8nXwmo │ │ ├── gps.jpg │ │ ├── ia7OEEEyXMoRa1QWQk8r │ │ ├── image.jpg │ │ ├── imageFile.png │ │ ├── java.md │ │ ├── n9WXAIXO2wRY4R8nXwmo │ │ ├── paulette.jpg │ │ ├── srEPevoPqPZpPEaeDnS3 │ │ ├── test.pdf │ │ ├── vcard.vcf │ │ └── videoFile.mp4 │ ├── disabledTests │ │ ├── AuthenticatorActivityTest.java │ │ └── uiautomator │ │ │ └── InitialTest.java │ └── java │ │ └── com │ │ ├── nextcloud │ │ ├── client │ │ │ ├── ActivitiesActivityIT.kt │ │ │ ├── AuthenticatorActivityIT.java │ │ │ ├── CommunityActivityIT.java │ │ │ ├── EndToEndAction.java │ │ │ ├── FileDisplayActivityIT.kt │ │ │ ├── FileDisplayActivityScreenshotIT.kt │ │ │ ├── FirstRunActivityIT.java │ │ │ ├── SettingsActivityIT.kt │ │ │ ├── SyncedFoldersActivityIT.java │ │ │ ├── TestRunner.kt │ │ │ ├── UploadListActivityActivityIT.java │ │ │ ├── account │ │ │ │ ├── AnonymousUserTest.kt │ │ │ │ ├── MockUserTest.kt │ │ │ │ ├── OwnCloudClientManagerTest.java │ │ │ │ ├── RegisteredUserTest.kt │ │ │ │ └── UserAccountManagerImplTest.java │ │ │ ├── assistant │ │ │ │ └── AssistantRepositoryTests.kt │ │ │ ├── database │ │ │ │ └── migrations │ │ │ │ │ └── MigrationTest.kt │ │ │ ├── documentscan │ │ │ │ └── GeneratePDFUseCaseTest.kt │ │ │ ├── etm │ │ │ │ └── EtmActivityTest.kt │ │ │ ├── files │ │ │ │ ├── DeepLinkHandlerTest.kt │ │ │ │ └── download │ │ │ │ │ ├── DownloaderServiceTest.kt │ │ │ │ │ ├── RegistryTest.kt │ │ │ │ │ ├── TransferManagerConnectionTest.kt │ │ │ │ │ └── TransferManagerTest.kt │ │ │ ├── integrations │ │ │ │ └── deck │ │ │ │ │ └── DeckApiTest.kt │ │ │ ├── jobs │ │ │ │ ├── BackgroundJobManagerTest.kt │ │ │ │ └── ContactsBackupIT.kt │ │ │ ├── migrations │ │ │ │ ├── MigrationsDbTest.kt │ │ │ │ ├── MigrationsManagerTest.kt │ │ │ │ ├── MockSharedPreferences.kt │ │ │ │ └── MockSharedPreferencesTest.kt │ │ │ ├── network │ │ │ │ └── ConnectivityServiceImplIT.kt │ │ │ └── sso │ │ │ │ └── SSOActivityTests.kt │ │ ├── extensions │ │ │ ├── BundleExtensionTests.kt │ │ │ └── IntentExtensionTests.kt │ │ ├── sso │ │ │ └── InputStreamBinderTest.kt │ │ ├── test │ │ │ ├── GrantStoragePermissionRule.kt │ │ │ ├── InjectionOverrideRule.kt │ │ │ ├── InjectionTestActivityTest.kt │ │ │ ├── RandomStringGenerator.kt │ │ │ ├── RetryTestRule.kt │ │ │ ├── TestMainApp.kt │ │ │ └── model │ │ │ │ └── TestModels.kt │ │ ├── ui │ │ │ ├── BitmapIT.kt │ │ │ └── SetStatusDialogFragmentIT.kt │ │ └── utils │ │ │ ├── AutoRenameTests.kt │ │ │ ├── CertificateValidatorTests.kt │ │ │ └── FileNameValidatorTests.kt │ │ ├── nmc │ │ └── android │ │ │ └── ui │ │ │ └── LauncherActivityIT.kt │ │ └── owncloud │ │ └── android │ │ ├── AbstractIT.java │ │ ├── AbstractOnServerIT.java │ │ ├── DownloadIT.java │ │ ├── EncryptionIT.kt │ │ ├── FileIT.java │ │ ├── ScreenshotsIT.java │ │ ├── UploadIT.java │ │ ├── authentication │ │ ├── AuthenticatorActivityIT.kt │ │ └── PassCodeManagerIT.kt │ │ ├── datamodel │ │ ├── ArbitraryDataProviderIT.kt │ │ ├── ContentResolverHelperIT.kt │ │ ├── Credentials.kt │ │ ├── FileDataStorageManagerContentProviderClientIT.java │ │ ├── FileDataStorageManagerContentResolverIT.kt │ │ ├── FileDataStorageManagerIT.java │ │ ├── OCCapabilityIT.kt │ │ ├── OCFileIconTests.kt │ │ ├── OCFileUnitTest.java │ │ └── UploadStorageManagerTest.java │ │ ├── files │ │ ├── FileMenuFilterIT.kt │ │ └── services │ │ │ └── FileUploaderIT.kt │ │ ├── operations │ │ ├── GetSharesForFileOperationIT.kt │ │ └── RemoveFileOperationIT.java │ │ ├── providers │ │ ├── DocumentsProviderUtils.kt │ │ ├── DocumentsStorageProviderIT.kt │ │ ├── FileContentProviderVerificationIT.kt │ │ └── UsersAndGroupsSearchProviderIT.kt │ │ ├── ui │ │ ├── LoginIT.kt │ │ ├── activity │ │ │ ├── ConflictsResolveActivityIT.java │ │ │ ├── ContactsPreferenceActivityIT.kt │ │ │ ├── DrawerActivityIT.java │ │ │ ├── FileDisplayActivityTest.java │ │ │ ├── FolderPickerActivityIT.java │ │ │ ├── ManageAccountsActivityIT.java │ │ │ ├── NotificationsActivityIT.kt │ │ │ ├── PassCodeActivityIT.kt │ │ │ ├── ReceiveExternalFilesActivityIT.kt │ │ │ ├── UploadFilesActivityIT.kt │ │ │ └── UserInfoActivityIT.java │ │ ├── adapter │ │ │ └── OCFileListAdapterIT.kt │ │ ├── dialog │ │ │ ├── DialogFragmentIT.java │ │ │ ├── SendFilesDialogTest.kt │ │ │ ├── SendShareDialogTest.kt │ │ │ ├── SetupEncryptionDialogFragmentIT.kt │ │ │ └── SyncFileNotEnoughSpaceDialogFragmentTest.kt │ │ ├── fragment │ │ │ ├── AvatarIT.kt │ │ │ ├── AvatarTestFragment.kt │ │ │ ├── BackupListFragmentIT.kt │ │ │ ├── FileDetailFragmentStaticServerIT.kt │ │ │ ├── FileDetailSharingFragmentIT.kt │ │ │ ├── GalleryFragmentIT.kt │ │ │ ├── GroupfolderListFragmentIT.kt │ │ │ ├── OCFileListFragmentStaticServerIT.kt │ │ │ ├── SharedListFragmentIT.kt │ │ │ ├── UnifiedSearchFakeRepository.kt │ │ │ └── UnifiedSearchFragmentIT.kt │ │ ├── helpers │ │ │ ├── FileOperationsHelperIT.kt │ │ │ └── UriUploaderIT.kt │ │ ├── preview │ │ │ ├── PreviewBitmapScreenshotIT.kt │ │ │ ├── PreviewImageFragmentIT.kt │ │ │ ├── PreviewTextFileFragmentTest.kt │ │ │ └── pdf │ │ │ │ └── PreviewPdfFragmentScreenshotIT.kt │ │ └── trashbin │ │ │ ├── TrashbinActivityIT.kt │ │ │ └── TrashbinLocalRepository.kt │ │ ├── util │ │ ├── EncryptionTestIT.java │ │ └── ErrorMessageAdapterIT.java │ │ └── utils │ │ ├── BitmapUtilsIT.kt │ │ ├── DisplayUtilsIT.kt │ │ ├── DrawableUtilTests.kt │ │ ├── EncryptionTestUtils.kt │ │ ├── EncryptionUtilsIT.kt │ │ ├── EncryptionUtilsV2IT.kt │ │ ├── EspressoIdlingResource.kt │ │ ├── FileExportUtilsIT.kt │ │ ├── FileStorageUtilsIT.kt │ │ ├── FileUtilTest.kt │ │ ├── SessionMixinTest.kt │ │ ├── SyncedFolderUtilsTest.kt │ │ └── theme │ │ └── CapabilityUtilsIT.kt │ ├── debug │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── nextcloud │ │ │ ├── client │ │ │ └── di │ │ │ │ └── BuildTypeComponentsModule.kt │ │ │ └── test │ │ │ ├── InjectionTestActivity.kt │ │ │ └── TestActivity.kt │ └── res │ │ └── layout │ │ ├── activity_injection_test.xml │ │ └── avatar_fragment.xml │ ├── generic │ ├── google-services.json │ └── java │ │ └── com │ │ ├── nextcloud │ │ ├── android │ │ │ └── appReview │ │ │ │ └── InAppReviewHelperImpl.kt │ │ └── client │ │ │ └── di │ │ │ ├── VariantComponentsModule.java │ │ │ └── VariantModule.kt │ │ └── owncloud │ │ └── android │ │ └── utils │ │ ├── PushUtils.java │ │ └── SecurityUtils.java │ ├── gplay │ ├── AndroidManifest.xml │ ├── google-services.json │ ├── java │ │ └── com │ │ │ ├── nextcloud │ │ │ ├── android │ │ │ │ └── appReview │ │ │ │ │ └── InAppReviewHelperImpl.kt │ │ │ └── client │ │ │ │ └── di │ │ │ │ ├── VariantComponentsModule.java │ │ │ │ └── VariantModule.kt │ │ │ └── owncloud │ │ │ └── android │ │ │ ├── authentication │ │ │ └── ModifiedAuthenticatorActivity.java │ │ │ ├── services │ │ │ └── firebase │ │ │ │ └── NCFirebaseMessagingService.java │ │ │ └── utils │ │ │ ├── GooglePlayUtils.kt │ │ │ ├── PushUtils.java │ │ │ └── SecurityUtils.java │ └── res │ │ └── values │ │ └── setup.xml │ ├── huawei │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ ├── nextcloud │ │ │ ├── android │ │ │ │ └── appReview │ │ │ │ │ └── InAppReviewHelperImpl.kt │ │ │ └── client │ │ │ │ └── di │ │ │ │ ├── VariantComponentsModule.java │ │ │ │ └── VariantModule.kt │ │ │ └── owncloud │ │ │ └── android │ │ │ ├── ui │ │ │ └── activity │ │ │ │ └── HuaweiCommunityActivity.kt │ │ │ └── utils │ │ │ ├── PushUtils.java │ │ │ └── SecurityUtils.java │ └── res │ │ └── values │ │ └── bools.xml │ ├── main │ ├── AndroidManifest.xml │ ├── aidl │ │ └── com │ │ │ └── nextcloud │ │ │ └── android │ │ │ └── sso │ │ │ └── aidl │ │ │ └── IInputStreamService.aidl │ ├── ic_launcher-web-round.png │ ├── ic_launcher-web.png │ ├── java │ │ ├── com │ │ │ ├── nextcloud │ │ │ │ ├── android │ │ │ │ │ ├── files │ │ │ │ │ │ └── FileLockingHelper.kt │ │ │ │ │ └── sso │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── InputStreamBinder.java │ │ │ │ │ │ ├── PatchMethod.java │ │ │ │ │ │ ├── PlainHeader.java │ │ │ │ │ │ ├── QueryParam.java │ │ │ │ │ │ ├── Response.java │ │ │ │ │ │ └── aidl │ │ │ │ │ │ ├── IThreadListener.java │ │ │ │ │ │ ├── NextcloudRequest.java │ │ │ │ │ │ └── ParcelFileDescriptorUtil.java │ │ │ │ ├── appReview │ │ │ │ │ ├── AppReviewShownModel.kt │ │ │ │ │ ├── InAppReviewHelper.kt │ │ │ │ │ └── InAppReviewModule.kt │ │ │ │ ├── client │ │ │ │ │ ├── NominatimClient.kt │ │ │ │ │ ├── account │ │ │ │ │ │ ├── AnonymousUser.kt │ │ │ │ │ │ ├── CurrentAccountProvider.java │ │ │ │ │ │ ├── MockUser.kt │ │ │ │ │ │ ├── RegisteredUser.kt │ │ │ │ │ │ ├── Server.kt │ │ │ │ │ │ ├── User.kt │ │ │ │ │ │ ├── UserAccountManager.java │ │ │ │ │ │ └── UserAccountManagerImpl.java │ │ │ │ │ ├── appinfo │ │ │ │ │ │ ├── AppInfo.kt │ │ │ │ │ │ ├── AppInfoImpl.kt │ │ │ │ │ │ └── AppInfoModule.kt │ │ │ │ │ ├── assistant │ │ │ │ │ │ ├── AssistantViewModel.kt │ │ │ │ │ │ ├── AsssistantScreen.kt │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ ├── AddTaskAlertDialog.kt │ │ │ │ │ │ │ └── CenterText.kt │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ │ └── TaskExtensions.kt │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── ScreenOverlayState.kt │ │ │ │ │ │ │ └── ScreenState.kt │ │ │ │ │ │ ├── repository │ │ │ │ │ │ │ ├── AssistantMockRepository.kt │ │ │ │ │ │ │ ├── AssistantRepository.kt │ │ │ │ │ │ │ └── AssistantRepositoryType.kt │ │ │ │ │ │ ├── task │ │ │ │ │ │ │ ├── TaskStatusView.kt │ │ │ │ │ │ │ └── TaskView.kt │ │ │ │ │ │ ├── taskDetail │ │ │ │ │ │ │ └── TaskDetailBottomSheet.kt │ │ │ │ │ │ └── taskTypes │ │ │ │ │ │ │ └── TaskTypesRow.kt │ │ │ │ │ ├── core │ │ │ │ │ │ ├── AsyncRunner.kt │ │ │ │ │ │ ├── Cancellable.kt │ │ │ │ │ │ ├── Clock.kt │ │ │ │ │ │ ├── ClockImpl.kt │ │ │ │ │ │ ├── LocalBinder.kt │ │ │ │ │ │ ├── LocalConnection.kt │ │ │ │ │ │ ├── ManualAsyncRunner.kt │ │ │ │ │ │ ├── Task.kt │ │ │ │ │ │ └── ThreadPoolAsyncRunner.kt │ │ │ │ │ ├── database │ │ │ │ │ │ ├── DatabaseModule.kt │ │ │ │ │ │ ├── NextcloudDatabase.kt │ │ │ │ │ │ ├── dao │ │ │ │ │ │ │ ├── ArbitraryDataDao.kt │ │ │ │ │ │ │ ├── FileDao.kt │ │ │ │ │ │ │ └── OfflineOperationDao.kt │ │ │ │ │ │ ├── entity │ │ │ │ │ │ │ ├── ArbitraryDataEntity.kt │ │ │ │ │ │ │ ├── CapabilityEntity.kt │ │ │ │ │ │ │ ├── ExternalLinkEntity.kt │ │ │ │ │ │ │ ├── FileEntity.kt │ │ │ │ │ │ │ ├── FilesystemEntity.kt │ │ │ │ │ │ │ ├── OfflineOperationEntity.kt │ │ │ │ │ │ │ ├── ShareEntity.kt │ │ │ │ │ │ │ ├── SyncedFolderEntity.kt │ │ │ │ │ │ │ ├── UploadEntity.kt │ │ │ │ │ │ │ └── VirtualEntity.kt │ │ │ │ │ │ ├── migrations │ │ │ │ │ │ │ ├── DatabaseMigrationUtil.kt │ │ │ │ │ │ │ ├── LegacyMigration.kt │ │ │ │ │ │ │ ├── LegacyMigrationHelper.java │ │ │ │ │ │ │ ├── Migration67to68.kt │ │ │ │ │ │ │ └── RoomMigration.kt │ │ │ │ │ │ ├── typeAdapter │ │ │ │ │ │ │ └── OfflineOperationTypeAdapter.kt │ │ │ │ │ │ └── typeConverter │ │ │ │ │ │ │ └── OfflineOperationTypeConverter.kt │ │ │ │ │ ├── device │ │ │ │ │ │ ├── BatteryStatus.kt │ │ │ │ │ │ ├── DeviceInfo.kt │ │ │ │ │ │ ├── DeviceModule.kt │ │ │ │ │ │ ├── PowerManagementService.kt │ │ │ │ │ │ └── PowerManagementServiceImpl.kt │ │ │ │ │ ├── di │ │ │ │ │ │ ├── ActivityInjector.kt │ │ │ │ │ │ ├── AppComponent.java │ │ │ │ │ │ ├── AppModule.java │ │ │ │ │ │ ├── ComponentsModule.java │ │ │ │ │ │ ├── DispatcherModule.kt │ │ │ │ │ │ ├── FragmentInjector.kt │ │ │ │ │ │ ├── Injectable.java │ │ │ │ │ │ ├── InjectorNotFoundException.java │ │ │ │ │ │ ├── ThemeModule.kt │ │ │ │ │ │ ├── ViewModelFactory.kt │ │ │ │ │ │ ├── ViewModelKey.kt │ │ │ │ │ │ ├── ViewModelModule.kt │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── documentscan │ │ │ │ │ │ ├── AppScanOptionalFeature.kt │ │ │ │ │ │ ├── DocumentPageListAdapter.kt │ │ │ │ │ │ ├── DocumentScanActivity.kt │ │ │ │ │ │ ├── DocumentScanViewModel.kt │ │ │ │ │ │ ├── GeneratePDFUseCase.kt │ │ │ │ │ │ └── GeneratePdfFromImagesWork.kt │ │ │ │ │ ├── editimage │ │ │ │ │ │ └── EditImageActivity.kt │ │ │ │ │ ├── errorhandling │ │ │ │ │ │ ├── ExceptionHandler.kt │ │ │ │ │ │ └── ShowErrorActivity.kt │ │ │ │ │ ├── etm │ │ │ │ │ │ ├── EtmActivity.kt │ │ │ │ │ │ ├── EtmBaseFragment.kt │ │ │ │ │ │ ├── EtmMenuAdapter.kt │ │ │ │ │ │ ├── EtmMenuEntry.kt │ │ │ │ │ │ ├── EtmMenuFragment.kt │ │ │ │ │ │ ├── EtmViewModel.kt │ │ │ │ │ │ └── pages │ │ │ │ │ │ │ ├── EtmAccountsFragment.kt │ │ │ │ │ │ │ ├── EtmBackgroundJobsFragment.kt │ │ │ │ │ │ │ ├── EtmFileTransferFragment.kt │ │ │ │ │ │ │ ├── EtmMigrations.kt │ │ │ │ │ │ │ └── EtmPreferencesFragment.kt │ │ │ │ │ ├── files │ │ │ │ │ │ ├── DeepLinkConstants.kt │ │ │ │ │ │ ├── DeepLinkHandler.kt │ │ │ │ │ │ ├── Direction.kt │ │ │ │ │ │ ├── Registry.kt │ │ │ │ │ │ └── Request.kt │ │ │ │ │ ├── integrations │ │ │ │ │ │ ├── IntegrationsModule.kt │ │ │ │ │ │ └── deck │ │ │ │ │ │ │ ├── DeckApi.kt │ │ │ │ │ │ │ └── DeckApiImpl.kt │ │ │ │ │ ├── jobs │ │ │ │ │ │ ├── AccountRemovalWork.kt │ │ │ │ │ │ ├── BackgroundJobFactory.kt │ │ │ │ │ │ ├── BackgroundJobManager.kt │ │ │ │ │ │ ├── BackgroundJobManagerImpl.kt │ │ │ │ │ │ ├── CalendarBackupWork.kt │ │ │ │ │ │ ├── CalendarImportWork.kt │ │ │ │ │ │ ├── ContactsBackupWork.kt │ │ │ │ │ │ ├── ContactsImportWork.kt │ │ │ │ │ │ ├── ContentObserverWork.kt │ │ │ │ │ │ ├── FilesExportWork.kt │ │ │ │ │ │ ├── FilesSyncWork.kt │ │ │ │ │ │ ├── HealthStatusWork.kt │ │ │ │ │ │ ├── InternalTwoWaySyncWork.kt │ │ │ │ │ │ ├── JobInfo.kt │ │ │ │ │ │ ├── JobsModule.kt │ │ │ │ │ │ ├── MediaFoldersDetectionWork.kt │ │ │ │ │ │ ├── NotificationWork.kt │ │ │ │ │ │ ├── OfflineSyncWork.kt │ │ │ │ │ │ ├── TestJob.kt │ │ │ │ │ │ ├── clipboard │ │ │ │ │ │ │ └── ClipboardClearWorker.kt │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ ├── DownloadNotificationManager.kt │ │ │ │ │ │ │ ├── DownloadTask.kt │ │ │ │ │ │ │ ├── FileDownloadError.kt │ │ │ │ │ │ │ ├── FileDownloadHelper.kt │ │ │ │ │ │ │ ├── FileDownloadIntents.kt │ │ │ │ │ │ │ └── FileDownloadWorker.kt │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ └── WorkerNotificationManager.kt │ │ │ │ │ │ ├── offlineOperations │ │ │ │ │ │ │ ├── OfflineOperationsNotificationManager.kt │ │ │ │ │ │ │ ├── OfflineOperationsWorker.kt │ │ │ │ │ │ │ └── repository │ │ │ │ │ │ │ │ ├── OfflineOperationsRepository.kt │ │ │ │ │ │ │ │ └── OfflineOperationsRepositoryType.kt │ │ │ │ │ │ ├── operation │ │ │ │ │ │ │ └── FileOperationHelper.kt │ │ │ │ │ │ ├── transfer │ │ │ │ │ │ │ ├── FileTransferService.kt │ │ │ │ │ │ │ ├── Transfer.kt │ │ │ │ │ │ │ ├── TransferManager.kt │ │ │ │ │ │ │ ├── TransferManagerConnection.kt │ │ │ │ │ │ │ ├── TransferManagerImpl.kt │ │ │ │ │ │ │ └── TransferState.kt │ │ │ │ │ │ └── upload │ │ │ │ │ │ │ ├── FileUploadHelper.kt │ │ │ │ │ │ │ ├── FileUploadWorker.kt │ │ │ │ │ │ │ ├── FileUploaderDelegate.kt │ │ │ │ │ │ │ ├── FileUploaderIntents.kt │ │ │ │ │ │ │ ├── PostUploadAction.kt │ │ │ │ │ │ │ ├── UploadNotificationManager.kt │ │ │ │ │ │ │ ├── UploadTask.kt │ │ │ │ │ │ │ └── UploadTrigger.kt │ │ │ │ │ ├── logger │ │ │ │ │ │ ├── FileLogHandler.kt │ │ │ │ │ │ ├── LegacyLoggerAdapter.kt │ │ │ │ │ │ ├── Level.kt │ │ │ │ │ │ ├── LogEntry.kt │ │ │ │ │ │ ├── Logger.kt │ │ │ │ │ │ ├── LoggerImpl.kt │ │ │ │ │ │ ├── LogsRepository.kt │ │ │ │ │ │ ├── ThreadLoop.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── AsyncFilter.kt │ │ │ │ │ │ │ ├── LogsActivity.kt │ │ │ │ │ │ │ ├── LogsAdapter.kt │ │ │ │ │ │ │ ├── LogsEmailSender.kt │ │ │ │ │ │ │ └── LogsViewModel.kt │ │ │ │ │ ├── media │ │ │ │ │ │ ├── AudioFocus.kt │ │ │ │ │ │ ├── AudioFocusManager.kt │ │ │ │ │ │ ├── BackgroundPlayerService.kt │ │ │ │ │ │ ├── ErrorFormat.kt │ │ │ │ │ │ ├── ExoplayerListener.kt │ │ │ │ │ │ ├── LoadUrlTask.kt │ │ │ │ │ │ ├── NextcloudExoPlayer.kt │ │ │ │ │ │ ├── Player.kt │ │ │ │ │ │ ├── PlayerError.kt │ │ │ │ │ │ ├── PlayerService.kt │ │ │ │ │ │ ├── PlayerServiceConnection.kt │ │ │ │ │ │ ├── PlayerStateMachine.kt │ │ │ │ │ │ └── PlaylistItem.kt │ │ │ │ │ ├── migrations │ │ │ │ │ │ ├── MigrationError.kt │ │ │ │ │ │ ├── MigrationInfo.kt │ │ │ │ │ │ ├── Migrations.kt │ │ │ │ │ │ ├── MigrationsDb.kt │ │ │ │ │ │ ├── MigrationsManager.kt │ │ │ │ │ │ └── MigrationsManagerImpl.kt │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── ActivityMixin.kt │ │ │ │ │ │ ├── MixinRegistry.kt │ │ │ │ │ │ └── SessionMixin.kt │ │ │ │ │ ├── network │ │ │ │ │ │ ├── ClientFactory.java │ │ │ │ │ │ ├── ClientFactoryImpl.java │ │ │ │ │ │ ├── Connectivity.kt │ │ │ │ │ │ ├── ConnectivityService.java │ │ │ │ │ │ ├── ConnectivityServiceImpl.java │ │ │ │ │ │ ├── NetworkModule.java │ │ │ │ │ │ └── WalledCheckCache.kt │ │ │ │ │ ├── notifications │ │ │ │ │ │ ├── AppNotificationManager.kt │ │ │ │ │ │ └── AppNotificationManagerImpl.kt │ │ │ │ │ ├── onboarding │ │ │ │ │ │ ├── FirstRunActivity.kt │ │ │ │ │ │ ├── OnboardingModule.kt │ │ │ │ │ │ ├── OnboardingService.kt │ │ │ │ │ │ ├── OnboardingServiceImpl.kt │ │ │ │ │ │ └── WhatsNewActivity.kt │ │ │ │ │ ├── preferences │ │ │ │ │ │ ├── AppPreferences.java │ │ │ │ │ │ ├── AppPreferencesImpl.java │ │ │ │ │ │ ├── DarkMode.java │ │ │ │ │ │ ├── PreferencesModule.java │ │ │ │ │ │ └── SubFolderRule.kt │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── HashUtil.kt │ │ │ │ │ │ ├── IntentUtil.kt │ │ │ │ │ │ └── Throttler.kt │ │ │ │ │ └── widget │ │ │ │ │ │ ├── DashboardWidgetConfigurationActivity.kt │ │ │ │ │ │ ├── DashboardWidgetConfigurationInterface.kt │ │ │ │ │ │ ├── DashboardWidgetProvider.kt │ │ │ │ │ │ ├── DashboardWidgetService.kt │ │ │ │ │ │ ├── DashboardWidgetUpdater.kt │ │ │ │ │ │ ├── WidgetConfiguration.kt │ │ │ │ │ │ └── WidgetRepository.kt │ │ │ │ ├── model │ │ │ │ │ ├── HTTPStatusCodes.kt │ │ │ │ │ ├── OCFileFilterType.kt │ │ │ │ │ ├── OfflineOperationType.kt │ │ │ │ │ ├── SearchResultEntryType.kt │ │ │ │ │ ├── WorkerState.kt │ │ │ │ │ └── WorkerStateLiveData.kt │ │ │ │ ├── receiver │ │ │ │ │ ├── NetworkChangeReceiver.kt │ │ │ │ │ └── OfflineOperationActionReceiver.kt │ │ │ │ ├── repository │ │ │ │ │ ├── ClientRepository.kt │ │ │ │ │ └── RemoteClientRepository.kt │ │ │ │ ├── ui │ │ │ │ │ ├── ChooseAccountDialogFragment.kt │ │ │ │ │ ├── ChooseStorageLocationDialogFragment.kt │ │ │ │ │ ├── ClearStatusTask.kt │ │ │ │ │ ├── ImageDetailFragment.kt │ │ │ │ │ ├── RetrieveStatus.kt │ │ │ │ │ ├── SetPredefinedCustomStatusTask.kt │ │ │ │ │ ├── SetStatusDialogFragment.kt │ │ │ │ │ ├── SetStatusTask.kt │ │ │ │ │ ├── SetUserDefinedCustomStatusTask.kt │ │ │ │ │ ├── SquareLoaderImageView.kt │ │ │ │ │ ├── composeActivity │ │ │ │ │ │ ├── ComposeActivity.kt │ │ │ │ │ │ └── ComposeDestination.kt │ │ │ │ │ ├── composeComponents │ │ │ │ │ │ ├── alertDialog │ │ │ │ │ │ │ └── SimpleAlertDialog.kt │ │ │ │ │ │ └── bottomSheet │ │ │ │ │ │ │ └── MoreActionsBottomSheet.kt │ │ │ │ │ ├── fileactions │ │ │ │ │ │ ├── FileAction.kt │ │ │ │ │ │ ├── FileActionsBottomSheet.kt │ │ │ │ │ │ └── FileActionsViewModel.kt │ │ │ │ │ └── trashbinFileActions │ │ │ │ │ │ ├── TrashbinFileAction.kt │ │ │ │ │ │ ├── TrashbinFileActionsBottomSheet.kt │ │ │ │ │ │ └── TrashbinFileActionsViewModel.kt │ │ │ │ └── utils │ │ │ │ │ ├── BitmapExtensions.kt │ │ │ │ │ ├── BuildHelper.kt │ │ │ │ │ ├── CalendarEventManager.kt │ │ │ │ │ ├── ContactManager.kt │ │ │ │ │ ├── EditorUtils.kt │ │ │ │ │ ├── ForegroundServiceHelper.kt │ │ │ │ │ ├── LinkHelper.kt │ │ │ │ │ ├── MenuUtils.kt │ │ │ │ │ ├── ShortcutUtil.kt │ │ │ │ │ ├── TimeConstants.kt │ │ │ │ │ ├── autoRename │ │ │ │ │ └── AutoRename.kt │ │ │ │ │ ├── date │ │ │ │ │ ├── DateFormatPattern.kt │ │ │ │ │ └── DateFormatter.kt │ │ │ │ │ ├── extensions │ │ │ │ │ ├── AccountExtensions.kt │ │ │ │ │ ├── ActionBarExtensions.kt │ │ │ │ │ ├── ActivityExtensions.kt │ │ │ │ │ ├── BundleExtensions.kt │ │ │ │ │ ├── ContextExtensions.kt │ │ │ │ │ ├── DateExtensions.kt │ │ │ │ │ ├── DecryptedUserExtensions.kt │ │ │ │ │ ├── DrawerActivityExtensions.kt │ │ │ │ │ ├── Extensions.kt │ │ │ │ │ ├── FileDataStorageManagerExtensions.kt │ │ │ │ │ ├── FileExtensions.kt │ │ │ │ │ ├── FragmentExtensions.kt │ │ │ │ │ ├── IntExtensions.kt │ │ │ │ │ ├── IntentExtensions.kt │ │ │ │ │ ├── OCCapabilityExtensions.kt │ │ │ │ │ ├── OCFileExtensions.kt │ │ │ │ │ ├── OnDataTransferProgressListenerExtensions.kt │ │ │ │ │ ├── OwnCloudClientExtensions.kt │ │ │ │ │ ├── ParcableExtensions.kt │ │ │ │ │ ├── RemoteOperationResultExtensions.kt │ │ │ │ │ ├── SearchResultEntryExtensions.kt │ │ │ │ │ ├── StringExtensions.kt │ │ │ │ │ ├── SyncedFolderExtensions.kt │ │ │ │ │ ├── TextViewExtensions.kt │ │ │ │ │ ├── ViewExtensions.kt │ │ │ │ │ └── WorkManagerExtensions.kt │ │ │ │ │ ├── fileNameValidator │ │ │ │ │ └── FileNameValidator.kt │ │ │ │ │ ├── mdm │ │ │ │ │ └── MDMConfig.kt │ │ │ │ │ ├── numberFormatter │ │ │ │ │ └── NumberFormatter.kt │ │ │ │ │ └── view │ │ │ │ │ ├── FastScrollPopupBackground.kt │ │ │ │ │ └── FastScrollUtils.kt │ │ │ ├── nmc │ │ │ │ └── android │ │ │ │ │ └── ui │ │ │ │ │ └── LauncherActivity.kt │ │ │ └── owncloud │ │ │ │ └── android │ │ │ │ ├── MainApp.java │ │ │ │ ├── authentication │ │ │ │ ├── AccountAuthenticator.java │ │ │ │ ├── AccountAuthenticatorActivity.java │ │ │ │ ├── AccountAuthenticatorService.java │ │ │ │ ├── AuthenticatorActivity.java │ │ │ │ ├── AuthenticatorAsyncTask.kt │ │ │ │ ├── AuthenticatorUrlUtils.kt │ │ │ │ ├── DeepLinkLoginActivity.kt │ │ │ │ ├── EnforcedServer.kt │ │ │ │ ├── LoginUrlInfo.java │ │ │ │ └── PassCodeManager.kt │ │ │ │ ├── datamodel │ │ │ │ ├── ArbitraryDataProvider.kt │ │ │ │ ├── ArbitraryDataProviderImpl.java │ │ │ │ ├── ContentResolverHelper.kt │ │ │ │ ├── DecryptedFolderMetadataOld.java │ │ │ │ ├── DecryptedPushMessage.kt │ │ │ │ ├── EncryptedFiledrop.kt │ │ │ │ ├── ExternalLinksProvider.java │ │ │ │ ├── FileDataStorageManager.java │ │ │ │ ├── FileSystemDataSet.java │ │ │ │ ├── FilesystemDataProvider.java │ │ │ │ ├── ForegroundServiceType.kt │ │ │ │ ├── GalleryItems.kt │ │ │ │ ├── GalleryRow.kt │ │ │ │ ├── MediaFolder.kt │ │ │ │ ├── MediaFolderType.kt │ │ │ │ ├── MediaFoldersModel.kt │ │ │ │ ├── MediaProvider.java │ │ │ │ ├── OCFile.java │ │ │ │ ├── PushConfigurationState.java │ │ │ │ ├── QuickPermissionModel.kt │ │ │ │ ├── ReceiverFlag.kt │ │ │ │ ├── SharesType.kt │ │ │ │ ├── SignatureVerification.kt │ │ │ │ ├── SyncedFolder.java │ │ │ │ ├── SyncedFolderDisplayItem.java │ │ │ │ ├── SyncedFolderProvider.java │ │ │ │ ├── Template.kt │ │ │ │ ├── ThumbnailsCacheManager.java │ │ │ │ ├── UploadsStorageManager.java │ │ │ │ ├── VirtualFolderType.java │ │ │ │ └── e2e │ │ │ │ │ ├── v1 │ │ │ │ │ ├── decrypted │ │ │ │ │ │ ├── Data.java │ │ │ │ │ │ ├── DecryptedFile.java │ │ │ │ │ │ ├── DecryptedFolderMetadataFileV1.java │ │ │ │ │ │ ├── DecryptedMetadata.java │ │ │ │ │ │ ├── Encrypted.java │ │ │ │ │ │ └── Sharing.java │ │ │ │ │ └── encrypted │ │ │ │ │ │ ├── EncryptedFile.kt │ │ │ │ │ │ └── EncryptedFolderMetadataFileV1.java │ │ │ │ │ └── v2 │ │ │ │ │ ├── decrypted │ │ │ │ │ ├── DecryptedFile.kt │ │ │ │ │ ├── DecryptedFolderMetadataFile.kt │ │ │ │ │ ├── DecryptedMetadata.kt │ │ │ │ │ └── DecryptedUser.kt │ │ │ │ │ └── encrypted │ │ │ │ │ ├── EncryptedFiledrop.kt │ │ │ │ │ ├── EncryptedFiledropUser.kt │ │ │ │ │ ├── EncryptedFolderMetadataFile.kt │ │ │ │ │ ├── EncryptedMetadata.kt │ │ │ │ │ ├── EncryptedUser.kt │ │ │ │ │ └── FiledropData.kt │ │ │ │ ├── datastorage │ │ │ │ ├── DataStorageProvider.java │ │ │ │ ├── StoragePoint.java │ │ │ │ ├── UniqueStorageList.java │ │ │ │ └── providers │ │ │ │ │ ├── AbstractCommandLineStoragePoint.java │ │ │ │ │ ├── AbstractStoragePointProvider.java │ │ │ │ │ ├── EnvironmentStoragePointProvider.java │ │ │ │ │ ├── HardcodedStoragePointProvider.java │ │ │ │ │ ├── IStoragePointProvider.java │ │ │ │ │ ├── MountCommandStoragePointProvider.java │ │ │ │ │ ├── SystemDefaultStoragePointProvider.java │ │ │ │ │ └── VDCStoragePointProvider.java │ │ │ │ ├── db │ │ │ │ ├── OCUpload.java │ │ │ │ ├── OCUploadComparator.kt │ │ │ │ ├── ProviderMeta.java │ │ │ │ └── UploadResult.java │ │ │ │ ├── features │ │ │ │ └── FeatureItem.java │ │ │ │ ├── files │ │ │ │ ├── BootupBroadcastReceiver.java │ │ │ │ ├── CreateFileFromTemplateOperation.java │ │ │ │ ├── FetchTemplateOperation.java │ │ │ │ ├── FileMenuFilter.java │ │ │ │ ├── StreamMediaFileOperation.java │ │ │ │ └── services │ │ │ │ │ ├── IndexedForest.java │ │ │ │ │ └── NameCollisionPolicy.java │ │ │ │ ├── jobs │ │ │ │ └── OfflineSyncJob.java │ │ │ │ ├── media │ │ │ │ └── MediaControlView.kt │ │ │ │ ├── operations │ │ │ │ ├── CheckCurrentCredentialsOperation.java │ │ │ │ ├── CommentFileOperation.java │ │ │ │ ├── CopyFileOperation.java │ │ │ │ ├── CreateFolderOperation.java │ │ │ │ ├── CreateShareViaLinkOperation.java │ │ │ │ ├── CreateShareWithShareeOperation.java │ │ │ │ ├── DetectAuthenticationMethodOperation.java │ │ │ │ ├── DownloadFileOperation.java │ │ │ │ ├── DownloadType.kt │ │ │ │ ├── GetCapabilitiesOperation.java │ │ │ │ ├── GetFilesDownloadLimitOperation.kt │ │ │ │ ├── GetServerInfoOperation.java │ │ │ │ ├── GetSharesForFileOperation.kt │ │ │ │ ├── GetUserProfileOperation.java │ │ │ │ ├── MoveFileOperation.java │ │ │ │ ├── RefreshFolderOperation.java │ │ │ │ ├── RemoteOperationFailedException.java │ │ │ │ ├── RemoveFileOperation.java │ │ │ │ ├── RemoveRemoteEncryptedFileOperation.kt │ │ │ │ ├── RenameFileOperation.java │ │ │ │ ├── RichDocumentsCreateAssetOperation.java │ │ │ │ ├── RichDocumentsUrlOperation.java │ │ │ │ ├── SetFilesDownloadLimitOperation.kt │ │ │ │ ├── SynchronizeFileOperation.java │ │ │ │ ├── SynchronizeFolderOperation.java │ │ │ │ ├── UnshareOperation.java │ │ │ │ ├── UpdateNoteForShareOperation.java │ │ │ │ ├── UpdateOCVersionOperation.java │ │ │ │ ├── UpdateShareInfoOperation.java │ │ │ │ ├── UpdateSharePermissionsOperation.java │ │ │ │ ├── UpdateShareViaLinkOperation.java │ │ │ │ ├── UploadException.java │ │ │ │ ├── UploadFileOperation.java │ │ │ │ ├── common │ │ │ │ │ └── SyncOperation.java │ │ │ │ └── e2e │ │ │ │ │ ├── E2EClientData.kt │ │ │ │ │ ├── E2EData.kt │ │ │ │ │ └── E2EFiles.kt │ │ │ │ ├── providers │ │ │ │ ├── DiskLruImageCacheFileProvider.java │ │ │ │ ├── DocumentsStorageProvider.java │ │ │ │ ├── FileContentProvider.java │ │ │ │ ├── UsersAndGroupsSearchConfig.kt │ │ │ │ └── UsersAndGroupsSearchProvider.java │ │ │ │ ├── services │ │ │ │ ├── AccountManagerService.java │ │ │ │ ├── OperationsService.java │ │ │ │ └── SyncFolderHandler.java │ │ │ │ ├── syncadapter │ │ │ │ ├── AbstractOwnCloudSyncAdapter.java │ │ │ │ ├── FileSyncAdapter.java │ │ │ │ └── FileSyncService.java │ │ │ │ ├── ui │ │ │ │ ├── AvatarGroupLayout.java │ │ │ │ ├── EmptyRecyclerView.java │ │ │ │ ├── ListPreferenceDialog.kt │ │ │ │ ├── NextcloudWebViewClient.kt │ │ │ │ ├── SquareImageView.java │ │ │ │ ├── SquareLinearLayout.java │ │ │ │ ├── StatusDrawable.java │ │ │ │ ├── TextDrawable.java │ │ │ │ ├── ThemeableSwitchPreference.java │ │ │ │ ├── activities │ │ │ │ │ ├── ActivitiesActivity.java │ │ │ │ │ ├── ActivitiesContract.java │ │ │ │ │ ├── ActivitiesPresenter.java │ │ │ │ │ ├── StickyHeaderItemDecoration.java │ │ │ │ │ └── data │ │ │ │ │ │ ├── activities │ │ │ │ │ │ ├── ActivitiesRepository.java │ │ │ │ │ │ ├── ActivitiesServiceApi.java │ │ │ │ │ │ ├── ActivitiesServiceApiImpl.java │ │ │ │ │ │ ├── ActivityRepositories.java │ │ │ │ │ │ └── RemoteActivitiesRepository.java │ │ │ │ │ │ └── files │ │ │ │ │ │ ├── FileRepositories.java │ │ │ │ │ │ ├── FilesRepository.java │ │ │ │ │ │ ├── FilesServiceApi.java │ │ │ │ │ │ ├── FilesServiceApiImpl.java │ │ │ │ │ │ └── RemoteFilesRepository.java │ │ │ │ ├── activity │ │ │ │ │ ├── BaseActivity.java │ │ │ │ │ ├── ChooseStorageLocationActivity.kt │ │ │ │ │ ├── CommunityActivity.kt │ │ │ │ │ ├── ComponentsGetter.java │ │ │ │ │ ├── ConflictsResolveActivity.kt │ │ │ │ │ ├── ContactsPreferenceActivity.java │ │ │ │ │ ├── CopyToClipboardActivity.kt │ │ │ │ │ ├── DrawerActivity.java │ │ │ │ │ ├── EditorWebView.java │ │ │ │ │ ├── ErrorsWhileCopyingHandlerActivity.java │ │ │ │ │ ├── ExternalSiteWebView.java │ │ │ │ │ ├── FileActivity.java │ │ │ │ │ ├── FileDisplayActivity.java │ │ │ │ │ ├── FilePickerActivity.kt │ │ │ │ │ ├── FolderPickerActivity.kt │ │ │ │ │ ├── InternalTwoWaySyncActivity.kt │ │ │ │ │ ├── ManageAccountsActivity.kt │ │ │ │ │ ├── ManageSpaceActivity.kt │ │ │ │ │ ├── NotificationsActivity.kt │ │ │ │ │ ├── OnEnforceableRefreshListener.java │ │ │ │ │ ├── PassCodeActivity.kt │ │ │ │ │ ├── ReceiveExternalFilesActivity.java │ │ │ │ │ ├── RequestCredentialsActivity.java │ │ │ │ │ ├── RichDocumentsEditorWebView.kt │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ ├── SetupEncryptionActivity.kt │ │ │ │ │ ├── ShareActivity.java │ │ │ │ │ ├── SsoGrantPermissionActivity.java │ │ │ │ │ ├── StorageMigration.java │ │ │ │ │ ├── SyncedFoldersActivity.kt │ │ │ │ │ ├── TextEditorWebView.kt │ │ │ │ │ ├── ToolbarActivity.java │ │ │ │ │ ├── UploadFilesActivity.java │ │ │ │ │ ├── UploadListActivity.java │ │ │ │ │ ├── UserInfoActivity.java │ │ │ │ │ └── fileDisplayActivity │ │ │ │ │ │ └── OfflineFolderConflictManager.kt │ │ │ │ ├── adapter │ │ │ │ │ ├── ActivityAndVersionListAdapter.java │ │ │ │ │ ├── ActivityListAdapter.java │ │ │ │ │ ├── CertificateCombinedExceptionViewAdapter.java │ │ │ │ │ ├── CommonOCFileListAdapterInterface.kt │ │ │ │ │ ├── DashboardWidgetListAdapter.kt │ │ │ │ │ ├── DiskLruImageCache.java │ │ │ │ │ ├── FeaturesViewAdapter.java │ │ │ │ │ ├── FeaturesWebViewAdapter.java │ │ │ │ │ ├── FileDetailTabAdapter.java │ │ │ │ │ ├── FilterableListAdapter.java │ │ │ │ │ ├── GalleryAdapter.kt │ │ │ │ │ ├── GalleryHeaderViewHolder.kt │ │ │ │ │ ├── GalleryRowHolder.kt │ │ │ │ │ ├── GroupfolderListAdapter.kt │ │ │ │ │ ├── InternalShareViewHolder.java │ │ │ │ │ ├── InternalTwoWaySyncAdapter.kt │ │ │ │ │ ├── InternalTwoWaySyncViewHolder.kt │ │ │ │ │ ├── LinkShareViewHolder.java │ │ │ │ │ ├── ListGridItemViewHolder.kt │ │ │ │ │ ├── ListItemViewHolder.kt │ │ │ │ │ ├── ListViewHolder.kt │ │ │ │ │ ├── LocalFileListAdapter.java │ │ │ │ │ ├── NewLinkShareViewHolder.java │ │ │ │ │ ├── NewSecureFileDropViewHolder.kt │ │ │ │ │ ├── NotificationListAdapter.java │ │ │ │ │ ├── OCFileListAdapter.java │ │ │ │ │ ├── OCFileListDelegate.kt │ │ │ │ │ ├── OCFileListFooterViewHolder.kt │ │ │ │ │ ├── OCFileListGridItemViewHolder.kt │ │ │ │ │ ├── OCFileListHeaderViewHolder.kt │ │ │ │ │ ├── OCFileListItemViewHolder.kt │ │ │ │ │ ├── OCFileListViewHolder.kt │ │ │ │ │ ├── OCShareToOCFileConverter.kt │ │ │ │ │ ├── PredefinedStatusClickListener.kt │ │ │ │ │ ├── PredefinedStatusListAdapter.kt │ │ │ │ │ ├── PredefinedStatusViewHolder.kt │ │ │ │ │ ├── PrintAdapter.java │ │ │ │ │ ├── QuickSharingPermissionsAdapter.kt │ │ │ │ │ ├── ReceiveExternalFilesAdapter.kt │ │ │ │ │ ├── RecommendedFilesAdapter.kt │ │ │ │ │ ├── RichDocumentsTemplateAdapter.java │ │ │ │ │ ├── SendButtonAdapter.java │ │ │ │ │ ├── ShareViewHolder.java │ │ │ │ │ ├── ShareeListAdapter.java │ │ │ │ │ ├── ShareeListAdapterListener.java │ │ │ │ │ ├── SslCertificateViewAdapter.java │ │ │ │ │ ├── SslErrorViewAdapter.java │ │ │ │ │ ├── StickyHeaderAdapter.java │ │ │ │ │ ├── StoragePathAdapter.kt │ │ │ │ │ ├── StoragePathItem.java │ │ │ │ │ ├── SyncedFolderAdapter.kt │ │ │ │ │ ├── TemplateAdapter.java │ │ │ │ │ ├── TrashbinListAdapter.java │ │ │ │ │ ├── UnifiedSearchFooterViewHolder.kt │ │ │ │ │ ├── UnifiedSearchHeaderViewHolder.kt │ │ │ │ │ ├── UnifiedSearchItemViewHolder.kt │ │ │ │ │ ├── UnifiedSearchListAdapter.kt │ │ │ │ │ ├── UploadListAdapter.java │ │ │ │ │ ├── UserListAdapter.java │ │ │ │ │ ├── UserListItem.java │ │ │ │ │ ├── ViewType.java │ │ │ │ │ ├── WidgetListItemViewHolder.kt │ │ │ │ │ ├── X509CertificateViewAdapter.java │ │ │ │ │ └── progressListener │ │ │ │ │ │ ├── DownloadProgressListener.kt │ │ │ │ │ │ ├── ProgressListener.kt │ │ │ │ │ │ └── UploadProgressListener.kt │ │ │ │ ├── asynctasks │ │ │ │ │ ├── CheckAvailableSpaceTask.java │ │ │ │ │ ├── CheckRemoteWipeTask.java │ │ │ │ │ ├── CopyAndUploadContentUrisTask.java │ │ │ │ │ ├── DeleteAllNotificationsTask.java │ │ │ │ │ ├── DeleteNotificationTask.java │ │ │ │ │ ├── FetchRemoteFileTask.java │ │ │ │ │ ├── GallerySearchTask.java │ │ │ │ │ ├── GetRemoteFileTask.kt │ │ │ │ │ ├── GroupfoldersSearchTask.kt │ │ │ │ │ ├── LoadContactsTask.java │ │ │ │ │ ├── LoadingVersionNumberTask.java │ │ │ │ │ ├── NotificationExecuteActionTask.java │ │ │ │ │ ├── PrintAsyncTask.java │ │ │ │ │ ├── RetrieveHoverCardAsyncTask.java │ │ │ │ │ ├── RichDocumentsLoadUrlTask.java │ │ │ │ │ └── TextEditorLoadUrlTask.java │ │ │ │ ├── components │ │ │ │ │ ├── PassCodeEditText.kt │ │ │ │ │ └── SendButtonData.java │ │ │ │ ├── decoration │ │ │ │ │ ├── MediaGridItemDecoration.java │ │ │ │ │ └── SimpleListItemDividerDecoration.java │ │ │ │ ├── dialog │ │ │ │ │ ├── AccountChooserInterface.kt │ │ │ │ │ ├── AccountRemovalDialog.kt │ │ │ │ │ ├── ChooseRichDocumentsTemplateDialogFragment.kt │ │ │ │ │ ├── ChooseTemplateDialogFragment.kt │ │ │ │ │ ├── ConfirmationDialogFragment.kt │ │ │ │ │ ├── ConflictsResolveDialog.kt │ │ │ │ │ ├── CreateFolderDialogFragment.kt │ │ │ │ │ ├── ExpirationDatePickerDialogFragment.kt │ │ │ │ │ ├── IndeterminateProgressDialog.kt │ │ │ │ │ ├── LoadingDialog.kt │ │ │ │ │ ├── LocalStoragePathPickerDialogFragment.kt │ │ │ │ │ ├── MultipleAccountsDialog.kt │ │ │ │ │ ├── RemoveFilesDialogFragment.kt │ │ │ │ │ ├── RenameFileDialogFragment.kt │ │ │ │ │ ├── RenamePublicShareDialogFragment.kt │ │ │ │ │ ├── SendFilesDialog.kt │ │ │ │ │ ├── SendShareDialog.kt │ │ │ │ │ ├── ShareLinkToDialog.kt │ │ │ │ │ ├── SharePasswordDialogFragment.kt │ │ │ │ │ ├── SortingOrderDialogFragment.kt │ │ │ │ │ ├── SslUntrustedCertDialog.kt │ │ │ │ │ ├── SsoWebView.java │ │ │ │ │ ├── StoragePermissionDialogFragment.kt │ │ │ │ │ ├── SyncFileNotEnoughSpaceDialogFragment.kt │ │ │ │ │ ├── SyncedFolderPreferencesDialogFragment.kt │ │ │ │ │ ├── TermsOfServiceDialog.kt │ │ │ │ │ ├── parcel │ │ │ │ │ │ ├── ConflictDialogData.kt │ │ │ │ │ │ └── SyncedFolderParcelable.java │ │ │ │ │ └── setupEncryption │ │ │ │ │ │ ├── CertificateValidator.kt │ │ │ │ │ │ └── SetupEncryptionDialogFragment.kt │ │ │ │ ├── events │ │ │ │ │ ├── AccountRemovedEvent.kt │ │ │ │ │ ├── ChangeMenuEvent.kt │ │ │ │ │ ├── CommentsEvent.kt │ │ │ │ │ ├── DummyDrawerEvent.kt │ │ │ │ │ ├── EncryptionEvent.kt │ │ │ │ │ ├── FavoriteEvent.kt │ │ │ │ │ ├── FileLockEvent.kt │ │ │ │ │ ├── SearchEvent.kt │ │ │ │ │ ├── SyncEventFinished.kt │ │ │ │ │ ├── TokenPushEvent.kt │ │ │ │ │ └── VCardToggleEvent.kt │ │ │ │ ├── fragment │ │ │ │ │ ├── ExtendedListFragment.kt │ │ │ │ │ ├── FeatureFragment.java │ │ │ │ │ ├── FeatureWebFragment.java │ │ │ │ │ ├── FileDetailActivitiesFragment.java │ │ │ │ │ ├── FileDetailFragment.java │ │ │ │ │ ├── FileDetailSharingFragment.java │ │ │ │ │ ├── FileDetailSharingMenuBottomSheetDialog.java │ │ │ │ │ ├── FileDetailsSharingMenuBottomSheetActions.java │ │ │ │ │ ├── FileDetailsSharingProcessFragment.kt │ │ │ │ │ ├── FileFragment.java │ │ │ │ │ ├── GalleryFragment.java │ │ │ │ │ ├── GalleryFragmentBottomSheetActions.kt │ │ │ │ │ ├── GalleryFragmentBottomSheetDialog.kt │ │ │ │ │ ├── GroupfolderListFragment.kt │ │ │ │ │ ├── LocalFileListFragment.java │ │ │ │ │ ├── OCFileListBottomSheetActions.java │ │ │ │ │ ├── OCFileListBottomSheetDialog.java │ │ │ │ │ ├── OCFileListFragment.java │ │ │ │ │ ├── OCFileListSearchAsyncTask.kt │ │ │ │ │ ├── ProfileBottomSheetDialog.kt │ │ │ │ │ ├── QuickSharingPermissionsBottomSheetDialog.java │ │ │ │ │ ├── SearchType.kt │ │ │ │ │ ├── SharedListFragment.kt │ │ │ │ │ ├── TaskRetainerFragment.java │ │ │ │ │ ├── UnifiedSearchFragment.kt │ │ │ │ │ ├── contactsbackup │ │ │ │ │ │ ├── BackupFragment.kt │ │ │ │ │ │ ├── BackupListAdapter.kt │ │ │ │ │ │ ├── BackupListFragment.java │ │ │ │ │ │ ├── BackupListHeaderViewHolder.kt │ │ │ │ │ │ ├── BackupListItemViewHolder.kt │ │ │ │ │ │ ├── CalendarItemViewHolder.java │ │ │ │ │ │ ├── ContactItemViewHolder.kt │ │ │ │ │ │ ├── ContactsAccount.java │ │ │ │ │ │ └── VCardComparator.java │ │ │ │ │ ├── filesRepository │ │ │ │ │ │ ├── FilesRepository.kt │ │ │ │ │ │ └── RemoteFilesRepository.kt │ │ │ │ │ └── util │ │ │ │ │ │ ├── FileDetailSharingFragmentHelper.java │ │ │ │ │ │ ├── GalleryFastScrollViewHelper.kt │ │ │ │ │ │ ├── PairMediatorLiveData.kt │ │ │ │ │ │ └── SharingMenuHelper.java │ │ │ │ ├── helpers │ │ │ │ │ ├── FileOperationsHelper.java │ │ │ │ │ ├── SparseBooleanArrayParcelable.java │ │ │ │ │ └── UriUploader.kt │ │ │ │ ├── interfaces │ │ │ │ │ ├── ActivityListInterface.java │ │ │ │ │ ├── GroupfolderListInterface.kt │ │ │ │ │ ├── LocalFileListFragmentInterface.java │ │ │ │ │ ├── OCFileListFragmentInterface.java │ │ │ │ │ ├── TrashbinActivityInterface.java │ │ │ │ │ ├── UnifiedSearchListInterface.kt │ │ │ │ │ └── VersionListInterface.java │ │ │ │ ├── notifications │ │ │ │ │ ├── NotificationUtils.java │ │ │ │ │ └── NotificationsContract.java │ │ │ │ ├── preview │ │ │ │ │ ├── FileDownloadFragment.java │ │ │ │ │ ├── PreviewBitmapActivity.kt │ │ │ │ │ ├── PreviewImageActivity.kt │ │ │ │ │ ├── PreviewImageErrorFragment.kt │ │ │ │ │ ├── PreviewImageFragment.kt │ │ │ │ │ ├── PreviewImagePagerAdapter.kt │ │ │ │ │ ├── PreviewMediaActivity.kt │ │ │ │ │ ├── PreviewMediaFragment.kt │ │ │ │ │ ├── PreviewTextFileFragment.java │ │ │ │ │ ├── PreviewTextFragment.kt │ │ │ │ │ ├── PreviewTextStringFragment.java │ │ │ │ │ ├── PreviewVideoFullscreenDialog.kt │ │ │ │ │ ├── model │ │ │ │ │ │ └── PreviewImageActivityState.kt │ │ │ │ │ └── pdf │ │ │ │ │ │ ├── PreviewPdfAdapter.kt │ │ │ │ │ │ ├── PreviewPdfFragment.kt │ │ │ │ │ │ └── PreviewPdfViewModel.kt │ │ │ │ ├── trashbin │ │ │ │ │ ├── RemoteTrashbinRepository.kt │ │ │ │ │ ├── TrashbinActivity.kt │ │ │ │ │ ├── TrashbinContract.kt │ │ │ │ │ ├── TrashbinPresenter.kt │ │ │ │ │ └── TrashbinRepository.kt │ │ │ │ ├── unifiedsearch │ │ │ │ │ ├── GetSearchProvidersTask.kt │ │ │ │ │ ├── IUnifiedSearchRepository.kt │ │ │ │ │ ├── IUnifiedSearchViewModel.kt │ │ │ │ │ ├── SearchOnProviderTask.kt │ │ │ │ │ ├── UnifiedSearchModel.kt │ │ │ │ │ ├── UnifiedSearchRemoteRepository.kt │ │ │ │ │ └── UnifiedSearchViewModel.kt │ │ │ │ └── whatsnew │ │ │ │ │ └── ProgressIndicator.java │ │ │ │ └── utils │ │ │ │ ├── BitmapUtils.java │ │ │ │ ├── ClipboardUtil.kt │ │ │ │ ├── DataHolderUtil.java │ │ │ │ ├── DeviceCredentialUtils.java │ │ │ │ ├── DialogMenuItem.java │ │ │ │ ├── DisplayUtils.java │ │ │ │ ├── DrawableUtil.kt │ │ │ │ ├── DrawerMenuUtil.java │ │ │ │ ├── EncryptionUtils.java │ │ │ │ ├── EncryptionUtilsV2.kt │ │ │ │ ├── ErrorMessageAdapter.java │ │ │ │ ├── FileExportUtils.kt │ │ │ │ ├── FileSortOrder.kt │ │ │ │ ├── FileSortOrderByDate.kt │ │ │ │ ├── FileSortOrderByName.kt │ │ │ │ ├── FileSortOrderBySize.kt │ │ │ │ ├── FileStorageUtils.java │ │ │ │ ├── FileUtil.java │ │ │ │ ├── FilesSyncHelper.java │ │ │ │ ├── KeyboardUtils.kt │ │ │ │ ├── MimeType.java │ │ │ │ ├── MimeTypeUtil.java │ │ │ │ ├── NextcloudServer.java │ │ │ │ ├── OwnCloudSession.java │ │ │ │ ├── PathUtils.kt │ │ │ │ ├── PermissionUtil.kt │ │ │ │ ├── ReceiversHelper.java │ │ │ │ ├── ScreenshotTest.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── SyncedFolderUtils.kt │ │ │ │ ├── ThemeUtils.java │ │ │ │ ├── UriUtils.kt │ │ │ │ ├── WebViewUtil.kt │ │ │ │ ├── appConfig │ │ │ │ └── AppConfigKeys.kt │ │ │ │ ├── glide │ │ │ │ ├── CustomGlideStreamLoader.java │ │ │ │ ├── CustomGlideUriLoader.java │ │ │ │ └── HttpStreamFetcher.kt │ │ │ │ ├── svg │ │ │ │ ├── MenuSimpleTarget.java │ │ │ │ ├── SVGorImage.java │ │ │ │ ├── SvgBitmapTranscoder.java │ │ │ │ ├── SvgDecoder.java │ │ │ │ ├── SvgDrawableTranscoder.java │ │ │ │ ├── SvgOrImageBitmapTranscoder.java │ │ │ │ ├── SvgOrImageDecoder.java │ │ │ │ └── SvgSoftwareLayerSetter.java │ │ │ │ └── theme │ │ │ │ ├── CapabilityUtils.java │ │ │ │ ├── FilesSpecificViewThemeUtils.kt │ │ │ │ ├── MaterialSchemesProvider.kt │ │ │ │ ├── MaterialSchemesProviderImpl.kt │ │ │ │ ├── ServerThemeImpl.kt │ │ │ │ ├── ThemeColorUtils.java │ │ │ │ ├── ThemeUtils.java │ │ │ │ └── ViewThemeUtils.kt │ │ ├── org │ │ │ └── nextcloud │ │ │ │ └── providers │ │ │ │ └── cursors │ │ │ │ ├── FileCursor.java │ │ │ │ └── RootCursor.java │ │ └── third_parties │ │ │ ├── aosp │ │ │ └── SQLiteTokenizer.java │ │ │ ├── daveKoeller │ │ │ └── AlphanumComparator.java │ │ │ ├── ezvcard_android │ │ │ ├── AndroidCustomField.java │ │ │ ├── ContactOperations.java │ │ │ └── DataMappings.java │ │ │ └── sufficientlysecure │ │ │ ├── AndroidCalendar.java │ │ │ ├── CalendarSource.java │ │ │ ├── DuplicateHandlingEnum.java │ │ │ ├── ProcessVEvent.java │ │ │ └── SaveCalendar.java │ ├── res │ │ ├── animator │ │ │ ├── appbar_elevation_off.xml │ │ │ └── appbar_elevation_on.xml │ │ ├── color │ │ │ ├── card_border_selector.xml │ │ │ └── menu_item_text_color.xml │ │ ├── drawable-hdpi │ │ │ └── checker_16_16.png │ │ ├── drawable-mdpi │ │ │ └── checker_16_16.png │ │ ├── drawable-night │ │ │ ├── favorite.xml │ │ │ ├── ic_battery_alert.xml │ │ │ ├── preview_markdown_gradient_shape.xml │ │ │ ├── round_bgnd.xml │ │ │ ├── shared_via_link.xml │ │ │ └── shared_via_users.xml │ │ ├── drawable-xhdpi │ │ │ └── checker_16_16.png │ │ ├── drawable-xxhdpi │ │ │ └── checker_16_16.png │ │ ├── drawable-xxxhdpi │ │ │ ├── apk.png │ │ │ ├── background.png │ │ │ ├── background_nc18.png │ │ │ ├── checker_16_16.png │ │ │ ├── fdroid.png │ │ │ └── playstore.png │ │ ├── drawable │ │ │ ├── account_circle_white.xml │ │ │ ├── add_to_home_screen.xml │ │ │ ├── all_files.xml │ │ │ ├── arrow_right.xml │ │ │ ├── backrepeat.xml │ │ │ ├── borderless_btn.xml │ │ │ ├── divider.xml │ │ │ ├── e2e_border.xml │ │ │ ├── favorite.xml │ │ │ ├── file.xml │ │ │ ├── file_analytics.xml │ │ │ ├── file_application.xml │ │ │ ├── file_calendar.xml │ │ │ ├── file_code.xml │ │ │ ├── file_doc.xml │ │ │ ├── file_image.xml │ │ │ ├── file_link.xml │ │ │ ├── file_location.xml │ │ │ ├── file_movie.xml │ │ │ ├── file_multiple.xml │ │ │ ├── file_pdf.xml │ │ │ ├── file_ppt.xml │ │ │ ├── file_sound.xml │ │ │ ├── file_text.xml │ │ │ ├── file_vcard.xml │ │ │ ├── file_xls.xml │ │ │ ├── file_zip.xml │ │ │ ├── first_run_files.xml │ │ │ ├── first_run_groupware.xml │ │ │ ├── first_run_talk.xml │ │ │ ├── folder.xml │ │ │ ├── folder_star_32dp.xml │ │ │ ├── ic_account_plus.xml │ │ │ ├── ic_action_cancel_grey.xml │ │ │ ├── ic_action_create_dir.xml │ │ │ ├── ic_action_delete_grey.xml │ │ │ ├── ic_action_refresh.xml │ │ │ ├── ic_action_upload.xml │ │ │ ├── ic_activity.xml │ │ │ ├── ic_alert.xml │ │ │ ├── ic_alphabetical_asc.xml │ │ │ ├── ic_alphabetical_desc.xml │ │ │ ├── ic_arrow_back.xml │ │ │ ├── ic_arrow_back_foreground.xml │ │ │ ├── ic_arrow_up.xml │ │ │ ├── ic_assistant.xml │ │ │ ├── ic_baseline_arrow_drop_down_24.xml │ │ │ ├── ic_baseline_check_24.xml │ │ │ ├── ic_battery_alert.xml │ │ │ ├── ic_camera.xml │ │ │ ├── ic_cancel.xml │ │ │ ├── ic_check.xml │ │ │ ├── ic_check_circle.xml │ │ │ ├── ic_check_circle_outline.xml │ │ │ ├── ic_checkbox_blank_outline.xml │ │ │ ├── ic_checkbox_marked.xml │ │ │ ├── ic_circle.xml │ │ │ ├── ic_circles.xml │ │ │ ├── ic_clock.xml │ │ │ ├── ic_close.xml │ │ │ ├── ic_cloud_download.xml │ │ │ ├── ic_cloud_sync.xml │ │ │ ├── ic_cloud_sync_off.xml │ │ │ ├── ic_cloud_sync_on.xml │ │ │ ├── ic_cloud_upload.xml │ │ │ ├── ic_comment.xml │ │ │ ├── ic_comment_grid.xml │ │ │ ├── ic_contact_book.xml │ │ │ ├── ic_content_copy.xml │ │ │ ├── ic_dashboard.xml │ │ │ ├── ic_deck.xml │ │ │ ├── ic_decrypt.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_document_grey600.xml │ │ │ ├── ic_dots_horizontal.xml │ │ │ ├── ic_dots_vertical.xml │ │ │ ├── ic_download_grey600.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_email.xml │ │ │ ├── ic_encrypt.xml │ │ │ ├── ic_expand_less.xml │ │ │ ├── ic_expand_more.xml │ │ │ ├── ic_export.xml │ │ │ ├── ic_external.xml │ │ │ ├── ic_fast_forward.xml │ │ │ ├── ic_fast_rewind.xml │ │ │ ├── ic_find_in_page.xml │ │ │ ├── ic_folder_offline.xml │ │ │ ├── ic_folder_overlay_account_group.xml │ │ │ ├── ic_folder_overlay_external.xml │ │ │ ├── ic_folder_overlay_key.xml │ │ │ ├── ic_folder_overlay_link.xml │ │ │ ├── ic_folder_overlay_lock.xml │ │ │ ├── ic_folder_overlay_share.xml │ │ │ ├── ic_folder_overlay_upload.xml │ │ │ ├── ic_global_pause.xml │ │ │ ├── ic_global_resume.xml │ │ │ ├── ic_group.xml │ │ │ ├── ic_history.xml │ │ │ ├── ic_home.xml │ │ │ ├── ic_image_grey600.xml │ │ │ ├── ic_image_outline.xml │ │ │ ├── ic_import.xml │ │ │ ├── ic_info.xml │ │ │ ├── ic_information_outline.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_link.xml │ │ │ ├── ic_list_empty_create_folder.xml │ │ │ ├── ic_list_empty_error.xml │ │ │ ├── ic_list_empty_folder.xml │ │ │ ├── ic_list_empty_recent.xml │ │ │ ├── ic_list_empty_shared.xml │ │ │ ├── ic_live_photo.xml │ │ │ ├── ic_lock.xml │ │ │ ├── ic_lock_open_white.xml │ │ │ ├── ic_lock_white.xml │ │ │ ├── ic_locked_dots_small.xml │ │ │ ├── ic_map_marker.xml │ │ │ ├── ic_menu.xml │ │ │ ├── ic_modification_asc.xml │ │ │ ├── ic_modification_desc.xml │ │ │ ├── ic_more_apps.xml │ │ │ ├── ic_movie_grey600.xml │ │ │ ├── ic_music_grey600.xml │ │ │ ├── ic_notes.xml │ │ │ ├── ic_notification.xml │ │ │ ├── ic_ok.xml │ │ │ ├── ic_pause.xml │ │ │ ├── ic_people.xml │ │ │ ├── ic_phone.xml │ │ │ ├── ic_play.xml │ │ │ ├── ic_play_arrow.xml │ │ │ ├── ic_plus.xml │ │ │ ├── ic_post_add.xml │ │ │ ├── ic_rename.xml │ │ │ ├── ic_retry.xml │ │ │ ├── ic_save.xml │ │ │ ├── ic_scan_document.xml │ │ │ ├── ic_sd.xml │ │ │ ├── ic_sd_grey600.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_search_grey.xml │ │ │ ├── ic_search_light_grey.xml │ │ │ ├── ic_select_all.xml │ │ │ ├── ic_select_none.xml │ │ │ ├── ic_send.xml │ │ │ ├── ic_settings.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_size_asc.xml │ │ │ ├── ic_size_desc.xml │ │ │ ├── ic_star.xml │ │ │ ├── ic_star_light_yellow.xml │ │ │ ├── ic_star_outline.xml │ │ │ ├── ic_sync.xml │ │ │ ├── ic_synced.xml │ │ │ ├── ic_synchronizing.xml │ │ │ ├── ic_synchronizing_error.xml │ │ │ ├── ic_tag.xml │ │ │ ├── ic_talk.xml │ │ │ ├── ic_tick.xml │ │ │ ├── ic_twitter.xml │ │ │ ├── ic_unknown.xml │ │ │ ├── ic_unshared.xml │ │ │ ├── ic_user.xml │ │ │ ├── ic_user_status_away.xml │ │ │ ├── ic_user_status_dnd.xml │ │ │ ├── ic_user_status_invisible.xml │ │ │ ├── ic_video_camera.xml │ │ │ ├── ic_view_list.xml │ │ │ ├── ic_view_module.xml │ │ │ ├── ic_wallpaper.xml │ │ │ ├── ic_warning.xml │ │ │ ├── ic_web.xml │ │ │ ├── image_32dp.xml │ │ │ ├── image_fail.xml │ │ │ ├── indicator_dot_not_selected.xml │ │ │ ├── indicator_dot_selected.xml │ │ │ ├── logo.xml │ │ │ ├── nav_community.xml │ │ │ ├── nav_favorites.xml │ │ │ ├── nav_logout.xml │ │ │ ├── nav_on_device.xml │ │ │ ├── nav_photos.xml │ │ │ ├── nav_recently.xml │ │ │ ├── nav_settings.xml │ │ │ ├── nav_shared.xml │ │ │ ├── nav_synced_folders.xml │ │ │ ├── nav_trashbin.xml │ │ │ ├── nextcloud_logo.xml │ │ │ ├── nextcloud_splash_logo.xml │ │ │ ├── no_network.xml │ │ │ ├── notification_icon.xml │ │ │ ├── online_status.xml │ │ │ ├── outline_camera_24.xml │ │ │ ├── outline_flip_24.xml │ │ │ ├── outline_image_24.xml │ │ │ ├── outline_rotate_90_degrees_ccw_24.xml │ │ │ ├── photo_pin.xml │ │ │ ├── photo_pin_background.xml │ │ │ ├── preview_image_gradient_shape.xml │ │ │ ├── preview_markdown_gradient_shape.xml │ │ │ ├── process_dialog_background.xml │ │ │ ├── progress_small.xml │ │ │ ├── qrcode_scan.xml │ │ │ ├── round_bgnd.xml │ │ │ ├── rounded_rect.xml │ │ │ ├── rounded_rect_8dp.xml │ │ │ ├── shared_via_link.xml │ │ │ ├── shared_via_users.xml │ │ │ ├── spinner_inner.xml │ │ │ ├── uploads.xml │ │ │ ├── video_32dp.xml │ │ │ ├── video_white.xml │ │ │ ├── whats_new_progress_transition.xml │ │ │ └── white_outline.xml │ │ ├── layout-land │ │ │ └── account_setup.xml │ │ ├── layout │ │ │ ├── account_action.xml │ │ │ ├── account_item.xml │ │ │ ├── account_removal_dialog.xml │ │ │ ├── account_setup.xml │ │ │ ├── account_setup_webview.xml │ │ │ ├── accounts_layout.xml │ │ │ ├── activity_compose.xml │ │ │ ├── activity_document_scan.xml │ │ │ ├── activity_edit_image.xml │ │ │ ├── activity_etm.xml │ │ │ ├── activity_list_item.xml │ │ │ ├── activity_list_item_header.xml │ │ │ ├── activity_list_item_header_shimmer.xml │ │ │ ├── activity_list_item_shimmer.xml │ │ │ ├── activity_list_layout.xml │ │ │ ├── activity_manage_space.xml │ │ │ ├── activity_preview_bitmap.xml │ │ │ ├── activity_preview_media.xml │ │ │ ├── activity_row.xml │ │ │ ├── activity_show_error.xml │ │ │ ├── activity_splash.xml │ │ │ ├── backup_fragment.xml │ │ │ ├── backup_list_item.xml │ │ │ ├── backup_list_item_header.xml │ │ │ ├── backuplist_fragment.xml │ │ │ ├── calendarlist_list_item.xml │ │ │ ├── choose_template.xml │ │ │ ├── community_layout.xml │ │ │ ├── conflict_resolve_dialog.xml │ │ │ ├── contactlist_list_item.xml │ │ │ ├── contactlist_list_item_shimmer.xml │ │ │ ├── contacts_preference.xml │ │ │ ├── dashboard_widget.xml │ │ │ ├── dashboard_widget_configuration_layout.xml │ │ │ ├── deep_link_login.xml │ │ │ ├── dialog_choose_account.xml │ │ │ ├── dialog_data_storage_location.xml │ │ │ ├── dialog_preview_video.xml │ │ │ ├── dialog_scan_export_type.xml │ │ │ ├── dialog_set_status.xml │ │ │ ├── dialog_show_tos.xml │ │ │ ├── dialog_sso_grant_permission.xml │ │ │ ├── document_page_item.xml │ │ │ ├── drawer.xml │ │ │ ├── drawer_header.xml │ │ │ ├── edit_box_dialog.xml │ │ │ ├── empty_list.xml │ │ │ ├── enforced_servers_spinner.xml │ │ │ ├── etm_background_job_list_item.xml │ │ │ ├── etm_transfer_list_item.xml │ │ │ ├── externalsite_webview.xml │ │ │ ├── file_actions_bottom_sheet.xml │ │ │ ├── file_actions_bottom_sheet_item.xml │ │ │ ├── file_details_activities_fragment.xml │ │ │ ├── file_details_fragment.xml │ │ │ ├── file_details_share_group.xml │ │ │ ├── file_details_share_internal_share_link.xml │ │ │ ├── file_details_share_link_share_item.xml │ │ │ ├── file_details_share_public_link_add_new_item.xml │ │ │ ├── file_details_share_secure_file_drop_add_new_item.xml │ │ │ ├── file_details_share_share_item.xml │ │ │ ├── file_details_sharing_fragment.xml │ │ │ ├── file_details_sharing_menu_bottom_sheet_fragment.xml │ │ │ ├── file_details_sharing_process_fragment.xml │ │ │ ├── file_download_fragment.xml │ │ │ ├── file_list_actions_bottom_sheet_creator.xml │ │ │ ├── file_list_actions_bottom_sheet_fragment.xml │ │ │ ├── file_thumbnail.xml │ │ │ ├── files.xml │ │ │ ├── files_folder_picker.xml │ │ │ ├── files_picker.xml │ │ │ ├── first_run_activity.xml │ │ │ ├── fragment_compose_view.xml │ │ │ ├── fragment_etm_accounts.xml │ │ │ ├── fragment_etm_background_jobs.xml │ │ │ ├── fragment_etm_downloader.xml │ │ │ ├── fragment_etm_menu.xml │ │ │ ├── fragment_etm_migrations.xml │ │ │ ├── fragment_etm_preferences.xml │ │ │ ├── fragment_gallery_bottom_sheet.xml │ │ │ ├── fragment_preview_media.xml │ │ │ ├── gallery_header.xml │ │ │ ├── gallery_row.xml │ │ │ ├── generic_explanation.xml │ │ │ ├── grid_image.xml │ │ │ ├── grid_item.xml │ │ │ ├── grid_sync_item.xml │ │ │ ├── info_box.xml │ │ │ ├── internal_two_way_sync_layout.xml │ │ │ ├── internal_two_way_sync_view_holder.xml │ │ │ ├── item_quick_share_permissions.xml │ │ │ ├── list_footer.xml │ │ │ ├── list_fragment.xml │ │ │ ├── list_header.xml │ │ │ ├── list_header_open_in.xml │ │ │ ├── list_item.xml │ │ │ ├── loading_dialog.xml │ │ │ ├── log_entry_list_item.xml │ │ │ ├── login_flow_info_layout_v2.xml │ │ │ ├── logs_activity.xml │ │ │ ├── material_list_item_single_line.xml │ │ │ ├── media_control.xml │ │ │ ├── multiple_accounts.xml │ │ │ ├── note_dialog.xml │ │ │ ├── notification_list_item.xml │ │ │ ├── notifications_layout.xml │ │ │ ├── passcodelock.xml │ │ │ ├── password_dialog.xml │ │ │ ├── predefined_status.xml │ │ │ ├── preview_image_activity.xml │ │ │ ├── preview_image_details_fragment.xml │ │ │ ├── preview_image_error_fragment.xml │ │ │ ├── preview_image_fragment.xml │ │ │ ├── preview_pdf_fragment.xml │ │ │ ├── preview_pdf_page_item.xml │ │ │ ├── profile_bottom_sheet_action.xml │ │ │ ├── profile_bottom_sheet_fragment.xml │ │ │ ├── quick_sharing_permissions_bottom_sheet_fragment.xml │ │ │ ├── receive_external_files.xml │ │ │ ├── recommended_files_list_item.xml │ │ │ ├── richdocuments_webview.xml │ │ │ ├── search_users_groups_layout.xml │ │ │ ├── send_button.xml │ │ │ ├── send_files_fragment.xml │ │ │ ├── send_share_fragment.xml │ │ │ ├── setup_encryption_dialog.xml │ │ │ ├── share_activity.xml │ │ │ ├── sorting_order_fragment.xml │ │ │ ├── ssl_untrusted_cert_layout.xml │ │ │ ├── storage_path_dialog.xml │ │ │ ├── storage_path_item.xml │ │ │ ├── synced_folders_empty.xml │ │ │ ├── synced_folders_footer.xml │ │ │ ├── synced_folders_item_header.xml │ │ │ ├── synced_folders_layout.xml │ │ │ ├── synced_folders_list_item_shimmer.xml │ │ │ ├── synced_folders_settings_layout.xml │ │ │ ├── template_button.xml │ │ │ ├── test_layout.xml │ │ │ ├── text_file_preview.xml │ │ │ ├── toolbar_back_button.xml │ │ │ ├── toolbar_standard.xml │ │ │ ├── trashbin_activity.xml │ │ │ ├── trashbin_item.xml │ │ │ ├── trashbin_item_shimmer.xml │ │ │ ├── unified_search_empty.xml │ │ │ ├── unified_search_footer.xml │ │ │ ├── unified_search_header.xml │ │ │ ├── unified_search_item.xml │ │ │ ├── upload_file_dialog.xml │ │ │ ├── upload_files_layout.xml │ │ │ ├── upload_list_header.xml │ │ │ ├── upload_list_item.xml │ │ │ ├── upload_list_layout.xml │ │ │ ├── uploader_list_item_layout.xml │ │ │ ├── user_info_details_table_item.xml │ │ │ ├── user_info_layout.xml │ │ │ ├── version_list_item.xml │ │ │ ├── whats_new_activity.xml │ │ │ ├── whats_new_element.xml │ │ │ ├── whats_new_webview_element.xml │ │ │ ├── widget_item.xml │ │ │ ├── widget_item_load_more.xml │ │ │ └── widget_list_item.xml │ │ ├── menu │ │ │ ├── activity_document_scan.xml │ │ │ ├── activity_file_display.xml │ │ │ ├── activity_folder_picker.xml │ │ │ ├── activity_internal_two_way_sync.xml │ │ │ ├── activity_logs.xml │ │ │ ├── activity_notifications.xml │ │ │ ├── activity_receive_external_files.xml │ │ │ ├── activity_show_error.xml │ │ │ ├── activity_synced_folders.xml │ │ │ ├── activity_trashbin.xml │ │ │ ├── activity_upload_files.xml │ │ │ ├── activity_upload_list.xml │ │ │ ├── bottom_navigation_menu.xml │ │ │ ├── custom_menu_placeholder.xml │ │ │ ├── fragment_contact_list.xml │ │ │ ├── fragment_etm_accounts.xml │ │ │ ├── fragment_etm_background_jobs.xml │ │ │ ├── fragment_etm_file_transfer.xml │ │ │ ├── fragment_etm_migrations.xml │ │ │ ├── fragment_etm_preferences.xml │ │ │ ├── fragment_gallery_three_dots.xml │ │ │ ├── item_account.xml │ │ │ ├── item_trashbin.xml │ │ │ ├── partial_drawer_entries.xml │ │ │ ├── synced_folders_adapter.xml │ │ │ ├── upload_list_cancelled_options.xml │ │ │ ├── upload_list_failed_options.xml │ │ │ └── upload_list_item_file_conflict.xml │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ ├── raw │ │ │ ├── custom_error.html │ │ │ └── encryption_key_words.txt │ │ ├── resources.properties │ │ ├── values-ar │ │ │ └── strings.xml │ │ ├── values-ast │ │ │ └── strings.xml │ │ ├── values-b+en+001 │ │ │ └── strings.xml │ │ ├── values-bg-rBG │ │ │ └── strings.xml │ │ ├── values-br │ │ │ └── strings.xml │ │ ├── values-ca │ │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ │ └── strings.xml │ │ ├── values-da │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-el │ │ │ └── strings.xml │ │ ├── values-eo │ │ │ └── strings.xml │ │ ├── values-es-rAR │ │ │ └── strings.xml │ │ ├── values-es-rCL │ │ │ └── strings.xml │ │ ├── values-es-rCO │ │ │ └── strings.xml │ │ ├── values-es-rEC │ │ │ └── strings.xml │ │ ├── values-es-rMX │ │ │ └── strings.xml │ │ ├── values-es │ │ │ └── strings.xml │ │ ├── values-et-rEE │ │ │ └── strings.xml │ │ ├── values-eu │ │ │ └── strings.xml │ │ ├── values-fa │ │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-ga │ │ │ └── strings.xml │ │ ├── values-gd │ │ │ └── strings.xml │ │ ├── values-gl │ │ │ └── strings.xml │ │ ├── values-hr │ │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-is │ │ │ └── strings.xml │ │ ├── values-it │ │ │ └── strings.xml │ │ ├── values-iw │ │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ │ └── strings.xml │ │ ├── values-ka │ │ │ └── strings.xml │ │ ├── values-ko │ │ │ └── strings.xml │ │ ├── values-lo │ │ │ └── strings.xml │ │ ├── values-lt-rLT │ │ │ └── strings.xml │ │ ├── values-lv │ │ │ └── strings.xml │ │ ├── values-mk │ │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ │ └── strings.xml │ │ ├── values-night │ │ │ ├── colors.xml │ │ │ └── themes.xml │ │ ├── values-nl │ │ │ └── strings.xml │ │ ├── values-pl │ │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ ├── values-ro │ │ │ └── strings.xml │ │ ├── values-ru │ │ │ └── strings.xml │ │ ├── values-sc │ │ │ └── strings.xml │ │ ├── values-sk-rSK │ │ │ └── strings.xml │ │ ├── values-sl │ │ │ └── strings.xml │ │ ├── values-sq │ │ │ └── strings.xml │ │ ├── values-sr-rSP │ │ │ └── strings.xml │ │ ├── values-sr │ │ │ └── strings.xml │ │ ├── values-sv │ │ │ └── strings.xml │ │ ├── values-sw360dp │ │ │ └── dims.xml │ │ ├── values-sw600dp │ │ │ └── dims.xml │ │ ├── values-th-rTH │ │ │ └── strings.xml │ │ ├── values-tk │ │ │ └── strings.xml │ │ ├── values-tr │ │ │ └── strings.xml │ │ ├── values-ug │ │ │ └── strings.xml │ │ ├── values-uk │ │ │ └── strings.xml │ │ ├── values-v27 │ │ │ └── styles.xml │ │ ├── values-vi │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ ├── values │ │ │ ├── attrs.xml │ │ │ ├── bools.xml │ │ │ ├── colors.xml │ │ │ ├── dims.xml │ │ │ ├── ids.xml │ │ │ ├── setup.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ └── xml │ │ │ ├── app_config.xml │ │ │ ├── authenticator.xml │ │ │ ├── backup_config.xml │ │ │ ├── backup_rules.xml │ │ │ ├── dashboard_widget_info.xml │ │ │ ├── exposed_filepaths.xml │ │ │ ├── network_security_config.xml │ │ │ ├── preferences.xml │ │ │ ├── syncadapter_files.xml │ │ │ └── users_and_groups_searchable.xml │ └── resources │ │ └── ical4j.properties │ ├── qa │ ├── AndroidManifest.xml │ ├── google-services.json │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ ├── nextcloud │ │ │ ├── android │ │ │ │ └── appReview │ │ │ │ │ └── InAppReviewHelperImpl.kt │ │ │ └── client │ │ │ │ └── di │ │ │ │ ├── VariantComponentsModule.java │ │ │ │ └── VariantModule.kt │ │ │ └── owncloud │ │ │ └── android │ │ │ └── utils │ │ │ ├── PushUtils.java │ │ │ └── SecurityUtils.java │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── setup.xml │ ├── release │ └── java │ │ └── com │ │ └── nextcloud │ │ └── client │ │ └── di │ │ └── BuildTypeComponentsModule.java │ ├── test │ ├── java │ │ └── com │ │ │ ├── nextcloud │ │ │ ├── android │ │ │ │ ├── files │ │ │ │ │ └── FileLockingHelperTest.kt │ │ │ │ └── utils │ │ │ │ │ └── ExtensionsTest.kt │ │ │ └── client │ │ │ │ ├── core │ │ │ │ ├── LocalConnectionTest.kt │ │ │ │ ├── ManualAsyncRunnerTest.kt │ │ │ │ ├── TaskTest.kt │ │ │ │ └── ThreadPoolAsyncRunnerTest.kt │ │ │ │ ├── device │ │ │ │ └── TestPowerManagementService.kt │ │ │ │ ├── etm │ │ │ │ └── TestEtmViewModel.kt │ │ │ │ ├── jobs │ │ │ │ ├── BackgroundJobFactoryTest.kt │ │ │ │ └── ContentObserverWorkTest.kt │ │ │ │ ├── logger │ │ │ │ ├── FileLogHandlerTest.kt │ │ │ │ ├── LevelTest.kt │ │ │ │ ├── LogEntryTest.kt │ │ │ │ ├── LoggerTest.kt │ │ │ │ └── ui │ │ │ │ │ ├── AsyncFilterTest.kt │ │ │ │ │ └── LogsViewModelTest.kt │ │ │ │ ├── media │ │ │ │ ├── AudioFocusManagerTest.kt │ │ │ │ ├── AudioFocusTest.kt │ │ │ │ └── PlayerStateMachineTest.kt │ │ │ │ ├── mixins │ │ │ │ └── MixinRegistryTest.kt │ │ │ │ ├── network │ │ │ │ └── ConnectivityServiceTest.kt │ │ │ │ ├── onboarding │ │ │ │ └── OnboardingServiceTest.kt │ │ │ │ ├── preferences │ │ │ │ └── TestAppPreferences.java │ │ │ │ └── utils │ │ │ │ ├── FileStorageUtilsTest.kt │ │ │ │ ├── HashUtilTest.kt │ │ │ │ ├── NaturalSortTest.kt │ │ │ │ ├── OCFileSortTest.kt │ │ │ │ ├── SyncedFolderDisplayItemExtensionsTests.kt │ │ │ │ └── ThrottlerTest.kt │ │ │ └── owncloud │ │ │ └── android │ │ │ ├── authentication │ │ │ ├── AuthenticatorDataUrlTest.java │ │ │ ├── AuthenticatorUrlUtilsTest.java │ │ │ └── PassCodeManagerTest.kt │ │ │ ├── datamodel │ │ │ └── OCFileTest.kt │ │ │ ├── ui │ │ │ ├── TextDrawableTest.kt │ │ │ ├── activities │ │ │ │ ├── ActivitiesPresenterTest.java │ │ │ │ └── data │ │ │ │ │ ├── activities │ │ │ │ │ └── RemoteActivitiesRepositoryTest.java │ │ │ │ │ └── files │ │ │ │ │ └── RemoteFilesRepositoryTest.java │ │ │ ├── activity │ │ │ │ └── SyncedFoldersActivityTest.java │ │ │ ├── adapter │ │ │ │ ├── ActivityListAdapterTest.java │ │ │ │ ├── GalleryAdapterTest.kt │ │ │ │ ├── OCShareToOCFileConverterTest.kt │ │ │ │ ├── ShareeListAdapterTest.kt │ │ │ │ └── UserListAdapterTest.java │ │ │ └── db │ │ │ │ └── OCUploadComparatorTest.kt │ │ │ └── utils │ │ │ ├── DisplayUtilsTest.java │ │ │ ├── FilesSyncHelperTest.java │ │ │ ├── OwnCloudSessionTest.java │ │ │ ├── PathUtilsTest.kt │ │ │ └── StringUtilsTest.java │ └── resources │ │ └── mockito-extensions │ │ └── org.mockito.plugins.MockMaker │ └── versionDev │ ├── google-services.json │ ├── ic_launcher-web.png │ ├── java │ └── com │ │ ├── nextcloud │ │ ├── android │ │ │ └── appReview │ │ │ │ └── InAppReviewHelperImpl.kt │ │ └── client │ │ │ └── di │ │ │ ├── VariantComponentsModule.java │ │ │ └── VariantModule.kt │ │ └── owncloud │ │ └── android │ │ └── utils │ │ ├── PushUtils.java │ │ └── SecurityUtils.java │ └── res │ ├── drawable-v26 │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ └── values │ └── setup.xml ├── appscan ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── nextcloud │ └── appscan │ ├── AppScanActivity.kt │ └── ScanPageContract.kt ├── build.gradle ├── doc ├── Nextcloud_Android_Screenshots.png ├── Nextcloud_Android_Screenshots.png.license ├── branching.png ├── branching.png.license ├── branching.svg └── branching.svg.license ├── drawable_resources ├── alphabetical_asc.svg ├── alphabetical_asc.svg.license ├── alphabetical_desc.svg ├── alphabetical_desc.svg.license ├── audio.svg ├── audio.svg.license ├── dashboard.svg ├── dashboard.svg.license ├── first_run_files.svg ├── first_run_files.svg.license ├── first_run_groupware.svg ├── first_run_groupware.svg.license ├── first_run_talk.svg ├── first_run_talk.svg.license ├── ic_activity.svg ├── ic_activity.svg.license ├── ic_activity_light_grey.svg ├── ic_activity_light_grey.svg.license ├── ic_file.svg ├── ic_file.svg.license ├── ic_home.svg ├── ic_home.svg.license ├── ic_list_empty_home.svg ├── ic_list_empty_home.svg.license ├── ic_scan_document.svg ├── ic_scan_document.svg.license ├── icon-background.svg ├── icon-background.svg.license ├── logo.svg ├── logo.svg.license ├── logo_dev.svg ├── logo_dev.svg.license ├── logo_qa.svg ├── logo_qa.svg.license ├── modification_asc.svg ├── modification_asc.svg.license ├── modification_desc.svg ├── modification_desc.svg.license ├── nextcloud-logo.svg ├── nextcloud-logo.svg.license ├── nextcloud-splash-logo.svg ├── nextcloud-splash-logo.svg.license ├── notification-icon.svg ├── notification-icon.svg.license ├── package-x-generic.svg ├── package-x-generic.svg.license ├── qrcode.svg ├── qrcode.svg.license ├── shared_via_link.svg ├── shared_via_link.svg.license ├── size_asc.svg ├── size_asc.svg.license ├── size_desc.svg ├── size_desc.svg.license ├── spinner_inner.svg ├── spinner_inner.svg.license ├── state-error.svg ├── state-error.svg.license ├── state-offline.svg ├── state-offline.svg.license ├── state-ok.svg ├── state-ok.svg.license ├── state-pause.svg ├── state-pause.svg.license ├── state-sync.svg ├── state-sync.svg.license ├── state-warning.svg ├── state-warning.svg.license ├── user-status-away.svg ├── user-status-away.svg.license ├── user-status-dnd.svg ├── user-status-dnd.svg.license ├── user-status-invisible.svg ├── user-status-invisible.svg.license ├── view_play.svg ├── view_play.svg.license ├── whats_new_accounts.svg ├── whats_new_accounts.svg.license ├── whats_new_auto_upload.svg ├── whats_new_auto_upload.svg.license ├── whats_new_device_credentials.svg ├── whats_new_device_credentials.svg.license ├── whats_new_end_to_end_encryption.svg ├── whats_new_end_to_end_encryption.svg.license ├── whats_new_files.svg ├── whats_new_files.svg.license ├── whats_new_fingerprint.svg ├── whats_new_fingerprint.svg.license ├── whats_new_ipv6.svg ├── whats_new_ipv6.svg.license ├── whats_new_notifications.svg ├── whats_new_notifications.svg.license ├── whats_new_resized_images.svg ├── whats_new_resized_images.svg.license ├── whats_new_search.svg ├── whats_new_search.svg.license ├── whats_new_theming.svg └── whats_new_theming.svg.license ├── fastlane ├── Appfile ├── Appfile.license ├── Fastfile ├── Pluginfile ├── Pluginfile.license └── Screengrabfile ├── gradle.properties ├── gradle ├── libs.versions.toml ├── verification-keyring.keys ├── verification-keyring.keys.license ├── verification-metadata.xml ├── verification-metadata.xml.license └── wrapper │ ├── gradle-wrapper.jar │ ├── gradle-wrapper.properties │ └── gradle-wrapper.properties.license ├── gradlew ├── gradlew.bat ├── gradlew.bat.license ├── gradlew.license ├── jacoco.gradle ├── jacoco.gradle.license ├── ndk.env ├── ndk.env.license ├── renovate.json5 ├── renovate.json5.license ├── ruleset.xml ├── scripts ├── QA_keystore.jks ├── QA_keystore.jks.license ├── analysis │ ├── analysis-wrapper.sh │ ├── detectWrongSettings.sh │ ├── getBranchBase.sh │ ├── getBranchName.sh │ ├── lint-results.txt │ ├── lint-results.txt.license │ ├── lint-up.rb │ ├── spotbugs-filter.xml │ ├── spotbugs-up.rb │ ├── spotbugsComparison.py │ └── spotbugsSummary.py ├── androidScreenshotTest ├── buildDev ├── checkGplayLimitation.sh ├── checkIfRunDrone.sh ├── deleteOldComments.sh ├── generateScreenshotOverview.sh ├── hooks │ ├── pre-commit │ └── pre-push ├── lib.sh ├── metadata │ └── generate_metadata.py ├── runAllScreenshotCombinations ├── runCombinedTest.sh ├── screenshotCombinations ├── screenshotCombinations.license ├── screenshotSummary.sh ├── screenshots │ ├── addMockDevice.sh │ ├── generateScreenshotHtml.sh │ ├── phone.svg │ ├── phone.svg.license │ ├── sevenInch.svg │ └── sevenInch.svg.license ├── updateLibraryHash.sh ├── updateScreenshots.sh ├── uploadArtifact.sh ├── uploadReport.sh ├── uploadScreenshotSummary.sh ├── wait_for_emulator.sh └── wait_for_server.sh ├── settings.gradle ├── src ├── README.md ├── generic │ └── fastlane │ │ └── metadata │ │ └── android │ │ ├── ar-AR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── bg-BG │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ca │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── cs-CZ │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── da-DK │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── de-DE │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── el-GR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── en-US │ │ ├── full_description.txt │ │ ├── images │ │ │ └── icon.png │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── es-ES │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── eu-ES │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── fa-FA │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── fi-FI │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── fr-FR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── is-IS │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── it-IT │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ko-KR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── lt-LT │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── nl-NL │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── pl-PL │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── pt-BR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── pt-PT │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── ro-RO │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── sl-SL │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── sr-SR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── sv-SE │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── tr-TR │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── uk-UK │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ └── vi-VI │ │ ├── short_description.txt │ │ └── title.txt └── versionDev │ └── fastlane │ └── metadata │ └── android │ ├── ar-AR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── bg-BG │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ca │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── cs-CZ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── da-DK │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── de-DE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── el-GR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 20190517.txt │ │ ├── 20190518.txt │ │ ├── 20190520.txt │ │ ├── 20190521.txt │ │ ├── 20190522.txt │ │ ├── 20190523.txt │ │ ├── 20190524.txt │ │ ├── 20190528.txt │ │ ├── 20190529.txt │ │ ├── 20190530.txt │ │ ├── 20190531.txt │ │ ├── 20190601.txt │ │ ├── 20190604.txt │ │ ├── 20190605.txt │ │ ├── 20190612.txt │ │ ├── 20190613.txt │ │ ├── 20190615.txt │ │ ├── 20190619.txt │ │ ├── 20190621.txt │ │ ├── 20190622.txt │ │ ├── 20190625.txt │ │ ├── 20190627.txt │ │ ├── 20190629.txt │ │ ├── 20190701.txt │ │ ├── 20190702.txt │ │ ├── 20190703.txt │ │ ├── 20190704.txt │ │ ├── 20190705.txt │ │ ├── 20190710.txt │ │ ├── 20190711.txt │ │ ├── 20190713.txt │ │ ├── 20190716.txt │ │ ├── 20190717.txt │ │ ├── 20190720.txt │ │ ├── 20190723.txt │ │ ├── 20190724.txt │ │ ├── 20190726.txt │ │ ├── 20190727.txt │ │ ├── 20190730.txt │ │ ├── 20190731.txt │ │ ├── 20190802.txt │ │ ├── 20190803.txt │ │ ├── 20190806.txt │ │ ├── 20190808.txt │ │ ├── 20190809.txt │ │ ├── 20190810.txt │ │ ├── 20190813.txt │ │ ├── 20190815.txt │ │ ├── 20190816.txt │ │ ├── 20190817.txt │ │ ├── 20190820.txt │ │ ├── 20190821.txt │ │ ├── 20190822.txt │ │ ├── 20190823.txt │ │ ├── 20190824.txt │ │ ├── 20190827.txt │ │ ├── 20190828.txt │ │ ├── 20190829.txt │ │ ├── 20190903.txt │ │ ├── 20190904.txt │ │ ├── 20190905.txt │ │ ├── 20190906.txt │ │ ├── 20190910.txt │ │ ├── 20190911.txt │ │ ├── 20190913.txt │ │ ├── 20190914.txt │ │ ├── 20190921.txt │ │ ├── 20190924.txt │ │ ├── 20190926.txt │ │ ├── 20190928.txt │ │ ├── 20191002.txt │ │ ├── 20191003.txt │ │ ├── 20191005.txt │ │ ├── 20191008.txt │ │ ├── 20191009.txt │ │ ├── 20191010.txt │ │ ├── 20191011.txt │ │ ├── 20191012.txt │ │ ├── 20191016.txt │ │ ├── 20191017.txt │ │ ├── 20191018.txt │ │ ├── 20191019.txt │ │ ├── 20191022.txt │ │ ├── 20191024.txt │ │ ├── 20191025.txt │ │ ├── 20191026.txt │ │ ├── 20191029.txt │ │ ├── 20191030.txt │ │ ├── 20191031.txt │ │ ├── 20191101.txt │ │ ├── 20191102.txt │ │ ├── 20191106.txt │ │ ├── 20191107.txt │ │ ├── 20191108.txt │ │ ├── 20191113.txt │ │ ├── 20191114.txt │ │ ├── 20191116.txt │ │ ├── 20191119.txt │ │ ├── 20191120.txt │ │ ├── 20191121.txt │ │ ├── 20191123.txt │ │ ├── 20191127.txt │ │ ├── 20191129.txt │ │ ├── 20191203.txt │ │ ├── 20191204.txt │ │ ├── 20191205.txt │ │ ├── 20191206.txt │ │ ├── 20191207.txt │ │ ├── 20191211.txt │ │ ├── 20191213.txt │ │ ├── 20191214.txt │ │ ├── 20191217.txt │ │ ├── 20191218.txt │ │ ├── 20191219.txt │ │ ├── 20191220.txt │ │ ├── 20191221.txt │ │ ├── 20200107.txt │ │ ├── 20200108.txt │ │ ├── 20200109.txt │ │ ├── 20200110.txt │ │ ├── 20200112.txt │ │ ├── 20200115.txt │ │ ├── 20200117.txt │ │ ├── 20200118.txt │ │ ├── 20200121.txt │ │ ├── 20200122.txt │ │ ├── 20200125.txt │ │ ├── 20200128.txt │ │ ├── 20200129.txt │ │ └── 20220322.txt │ ├── full_description.txt │ ├── images │ │ └── icon.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── eu-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fa-FA │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fi-FI │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── is-IS │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ko-KR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── lt-LT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pl-PL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ro-RO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sl-SL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sr-SR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sv-SE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── uk-UK │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── vi-VI │ ├── short_description.txt │ └── title.txt ├── suppressions.xml └── user_manual ├── Makefile ├── android_app.rst ├── conf.py ├── images ├── android-1.png ├── android-10.png ├── android-11.png ├── android-12.png ├── android-13.png ├── android-14.png ├── android-15.png ├── android-2.png ├── android-3.png ├── android-4.png ├── android-5.png ├── android-6.png ├── android-8.png ├── android-9.png ├── davdroid-1-button-in-nextcloud-app.png ├── davdroid-2-install-davdroid.png ├── davdroid-3-enter-password.png └── davdroid-4-specify-owner-email.png ├── index.rst └── make.bat /.devcontainer/Dockerfile.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.env: -------------------------------------------------------------------------------- 1 | ANDROID_HOME=/usr/lib/android-sdk 2 | JAVA_OPTS="-Xmx8192M" 3 | GRADLE_OPTS="-Dorg.gradle.daemon=true" 4 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.env.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NextcloudAndroid", 3 | "dockerFile": "Dockerfile", 4 | } 5 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.github/.config.yml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | # You can add one username per supported platform and one custom link 4 | custom: https://nextcloud.com/include/ 5 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2023 Marcel Hibbe 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /.tx/config.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2012 Bartosz Przybylski 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only -------------------------------------------------------------------------------- /Gemfile.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /Gemfile.lock.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: CC0-1.0 3 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | /build -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_empty.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_empty_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_empty_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_error.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_error_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_error_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_loading.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_openDrawer_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_showActivities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_showActivities.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_showActivities_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.ActivitiesActivityIT_showActivities_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.AuthenticatorActivityIT_login_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.CommunityActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_shareToCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_shareToCircle.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_showAccounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_showAccounts.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_showShares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityIT_showShares.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_drawer_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_showMediaThenAllFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FileDisplayActivityScreenshotIT_showMediaThenAllFiles.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.FirstRunActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SettingsActivityIT_showMnemonic_Error_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_openDrawer_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_showPowerCheckDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_showPowerCheckDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.SyncedFoldersActivityIT_testSyncedFolderDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.UploadListActivityActivityIT_openDrawer_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.etm.EtmActivityTest_accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.etm.EtmActivityTest_accounts.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.client.etm.EtmActivityTest_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.client.etm.EtmActivityTest_overview.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.ui.BitmapIT_glideSVG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.ui.BitmapIT_glideSVG.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.nextcloud.ui.BitmapIT_roundBitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.nextcloud.ui.BitmapIT_roundBitmap.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepBoth_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepExisting_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_keepNew_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ConflictsResolveActivityIT_screenshotTextFiles.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ContactsPreferenceActivityIT_openVCF_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_testChooseLocationAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_testChooseLocationAction.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_testMoveOrCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.FolderPickerActivityIT_testMoveOrCopy.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_open_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ManageAccountsActivityIT_userInfoDetail_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_empty_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_error_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.NotificationsActivityIT_showNotifications.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_check_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_delete_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.PassCodeActivityIT_request_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_openMultiAccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.ReceiveExternalFilesActivityIT_openMultiAccount.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_localFolderPickerMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_localFolderPickerMode.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_noneSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_noneSelected.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_open.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_search.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_selectAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UploadFilesActivityIT_selectAll.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.activity.UserInfoActivityIT_fullUserInfoDetail_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_away.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_dnd.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_fun.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_offline.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testAccountChooserDialog_online.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testBottomSheet_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testEnforcedPasswordDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testEnforcedPasswordDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testFileActionsBottomSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testFileActionsBottomSheet.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testLoadingDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testNewFolderDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testOptionalPasswordDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testOptionalPasswordDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testProfileBottomSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testProfileBottomSheet.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFileDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFilesDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFolderDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRemoveFoldersDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testRenameFileDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testSslUntrustedCertDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testSslUntrustedCertDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testStoragePermissionDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentIT_testStoragePermissionDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testAccountChooserDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testAccountChooserDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testLoadingDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testLoadingDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testNewFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testNewFolderDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFileDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFilesDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFilesDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFolderDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFolderDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFoldersDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRemoveFoldersDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRenameFileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.DialogFragmentTest_testRenameFileDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_Screenshot.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendFilesDialogTest_showDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SendShareDialogTest_showDialog_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_error_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.dialog.SetupEncryptionDialogFragmentIT_showMnemonic.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatarsWithStatus_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.AvatarIT_showAvatars_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showCalendarList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showCalendarList.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showContactList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showContactList.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showLoading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.BackupListFragmentIT_showLoading.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.FileDetailSharingFragmentIT_listSharesFileNone.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GalleryFragmentIT_showEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GalleryFragmentIT_showEmpty.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GalleryFragmentIT_showGallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GalleryFragmentIT_showGallery.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showEmpty.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolder.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.GroupfolderListFragmentIT_showGroupfolders.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToCircle.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToGroup.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareToUser.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareViaLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentIT_createAndShowShareViaLink.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showFiles.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showOneFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.OCFileListFragmentStaticServerIT_showOneFile.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.SharedListFragmentIT_showSharedFiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.fragment.SharedListFragmentIT_showSharedFiles.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewBitmapScreenshotIT_showBitmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewBitmapScreenshotIT_showBitmap.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_corruptImage_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.PreviewImageFragmentIT_validImage_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.preview.pdf.PreviewPdfFragmentScreenshotIT_showPdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.preview.pdf.PreviewPdfFragmentScreenshotIT_showPdf.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_differentUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_differentUser.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_empty_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_error_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_files_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_blue.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_dark_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_black.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_loading_light_white.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_normalUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/com.owncloud.android.ui.trashbin.TrashbinActivityIT_normalUser.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/richworkspaces_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/richworkspaces_dark.png -------------------------------------------------------------------------------- /app/screenshots/gplay/debug/richworkspaces_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/screenshots/gplay/debug/richworkspaces_light.png -------------------------------------------------------------------------------- /app/src/androidTest/assets/christine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/christine.jpg -------------------------------------------------------------------------------- /app/src/androidTest/assets/encrypted/ia7OEEEyXMoRa1QWQk8r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/encrypted/ia7OEEEyXMoRa1QWQk8r -------------------------------------------------------------------------------- /app/src/androidTest/assets/encrypted/n9WXAIXO2wRY4R8nXwmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/encrypted/n9WXAIXO2wRY4R8nXwmo -------------------------------------------------------------------------------- /app/src/androidTest/assets/gps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/gps.jpg -------------------------------------------------------------------------------- /app/src/androidTest/assets/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/image.jpg -------------------------------------------------------------------------------- /app/src/androidTest/assets/imageFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/imageFile.png -------------------------------------------------------------------------------- /app/src/androidTest/assets/n9WXAIXO2wRY4R8nXwmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/n9WXAIXO2wRY4R8nXwmo -------------------------------------------------------------------------------- /app/src/androidTest/assets/paulette.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/paulette.jpg -------------------------------------------------------------------------------- /app/src/androidTest/assets/srEPevoPqPZpPEaeDnS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/srEPevoPqPZpPEaeDnS3 -------------------------------------------------------------------------------- /app/src/androidTest/assets/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/test.pdf -------------------------------------------------------------------------------- /app/src/androidTest/assets/videoFile.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/androidTest/assets/videoFile.mp4 -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/ic_launcher-web-round.png -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/owncloud/android/jobs/OfflineSyncJob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/java/com/owncloud/android/jobs/OfflineSyncJob.java -------------------------------------------------------------------------------- /app/src/main/java/com/owncloud/android/utils/ThemeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/java/com/owncloud/android/utils/ThemeUtils.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/checker_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-hdpi/checker_16_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/checker_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-mdpi/checker_16_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/checker_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xhdpi/checker_16_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/checker_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxhdpi/checker_16_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/apk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/apk.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/background_nc18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/background_nc18.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/checker_16_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/checker_16_16.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/fdroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/fdroid.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/drawable-xxxhdpi/playstore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/raw/custom_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/main/res/raw/custom_error.html -------------------------------------------------------------------------------- /app/src/main/res/resources.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Nextcloud - Android Client 3 | # 4 | # SPDX-FileCopyrightText: 2024 Arthur-GYT 5 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH 6 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 7 | 8 | unqualifiedResLocale=en-US -------------------------------------------------------------------------------- /app/src/main/resources/ical4j.properties: -------------------------------------------------------------------------------- 1 | # suppress inspection "UnusedProperty" 2 | net.fortuna.ical4j.timezone.cache.impl=net.fortuna.ical4j.util.MapTimeZoneCache 3 | -------------------------------------------------------------------------------- /app/src/qa/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/qa/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/qa/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/qa/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/qa/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/qa/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/qa/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker: -------------------------------------------------------------------------------- 1 | mock-maker-inline 2 | -------------------------------------------------------------------------------- /app/src/versionDev/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/versionDev/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/versionDev/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/versionDev/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/versionDev/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/versionDev/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/app/src/versionDev/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /doc/Nextcloud_Android_Screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/doc/Nextcloud_Android_Screenshots.png -------------------------------------------------------------------------------- /doc/Nextcloud_Android_Screenshots.png.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017 Andy Scherzinger 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /doc/branching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/doc/branching.png -------------------------------------------------------------------------------- /doc/branching.png.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017 Andy Scherzinger 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /doc/branching.svg.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017 Andy Scherzinger 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/alphabetical_asc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/alphabetical_desc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/audio.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/dashboard.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/first_run_files.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Google LLC 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/first_run_groupware.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/first_run_talk.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/ic_activity.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/ic_activity_light_grey.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/ic_file.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/ic_home.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/ic_list_empty_home.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/ic_scan_document.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/icon-background.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/logo.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/logo_dev.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/logo_qa.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/modification_asc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/modification_desc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/nextcloud-logo.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/nextcloud-splash-logo.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/notification-icon.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/package-x-generic.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /drawable_resources/package-x-generic.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/qrcode.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/shared_via_link.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/size_asc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/size_desc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018 Andy Scherzinger 2 | SPDX-FileCopyrightText: 2018-2024 Google LLC 3 | SPDX-License-Identifier: Apache-2.0 4 | -------------------------------------------------------------------------------- /drawable_resources/spinner_inner.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/state-error.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/state-offline.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/state-ok.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/state-pause.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/state-sync.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/state-warning.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/user-status-away.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/user-status-dnd.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/user-status-invisible.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH 2 | SPDX-FileCopyrightText: 2018-2024 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /drawable_resources/view_play.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_accounts.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_auto_upload.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_device_credentials.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_end_to_end_encryption.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_files.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_fingerprint.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_ipv6.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_notifications.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_resized_images.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_search.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /drawable_resources/whats_new_theming.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH, all rights reserved 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file "~/.gradle/Google\ Play\ Android\ Developer-Fastlane.json" 2 | package_name "com.nextcloud.client" 3 | -------------------------------------------------------------------------------- /fastlane/Appfile.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | gem 'fastlane-plugin-huawei_appgallery_connect' 6 | -------------------------------------------------------------------------------- /fastlane/Pluginfile.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /gradle/verification-keyring.keys.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /gradle/verification-metadata.xml.license: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | # SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /gradlew.bat.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015 the original author or authors. 2 | SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /gradlew.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2015-2021 the original author or authors. 2 | SPDX-License-Identifier: Apache-2.0 3 | -------------------------------------------------------------------------------- /jacoco.gradle.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2023 Jarrod Robins 3 | SPDX-License-Identifier: CC0-1.0 4 | -------------------------------------------------------------------------------- /ndk.env: -------------------------------------------------------------------------------- 1 | NDK_VERSION=21.4.7075529 2 | CMAKE_VERSION=3.18.1 3 | -------------------------------------------------------------------------------- /ndk.env.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /renovate.json5.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /scripts/QA_keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/scripts/QA_keystore.jks -------------------------------------------------------------------------------- /scripts/QA_keystore.jks.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /scripts/analysis/lint-results.txt: -------------------------------------------------------------------------------- 1 | DO NOT TOUCH; GENERATED BY DRONE 2 | Lint Report: 11 errors and 51 warnings 3 | -------------------------------------------------------------------------------- /scripts/analysis/lint-results.txt.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 3 | -------------------------------------------------------------------------------- /scripts/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/scripts/hooks/pre-commit -------------------------------------------------------------------------------- /scripts/hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/scripts/hooks/pre-push -------------------------------------------------------------------------------- /scripts/screenshotCombinations: -------------------------------------------------------------------------------- 1 | light blue 2 | #dark blue 3 | #light white 4 | #dark white 5 | #light black 6 | #dark black 7 | #light red 8 | #dark red 9 | #light lightgreen 10 | dark lightgreen 11 | -------------------------------------------------------------------------------- /scripts/screenshotCombinations.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2020-2021 Tobias Kaminsky 3 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 4 | -------------------------------------------------------------------------------- /scripts/screenshots/phone.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2019 Jan Borchardt 3 | SPDX-FileCopyrightText: 2017-2018 Tobias Kaminsky 4 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 5 | -------------------------------------------------------------------------------- /scripts/screenshots/sevenInch.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors 2 | SPDX-FileCopyrightText: 2019 Jan Borchardt 3 | SPDX-FileCopyrightText: 2017-2018 Tobias Kaminsky 4 | SPDX-License-Identifier: AGPL-3.0-or-later OR GPL-2.0-only 5 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ar-AR/short_description.txt: -------------------------------------------------------------------------------- 1 | منصة إنتاجية ذاتية الاستضافة تبقيك متحكمًا -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ar-AR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/bg-BG/short_description.txt: -------------------------------------------------------------------------------- 1 | Самостоятелно хостваната платформа за производителност, която ви помага да поддъ -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/bg-BG/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | La plataforma de productivitat privada (auto-allotjada) que us dóna el control s -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Platforma pro produktivitu hostovaná u vás, kde vaše data jsou opravdu vaše -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- 1 | Vært i eget hus produktivitets platform, hvor du bevarer kontrollen. -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/da-DK/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Die selbst gehostete Produktivitätsplattform gibt Ihnen die volle Kontrolle -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- 1 | Η αυτόνομη πλατφόρμα λειτουργικότητας που σας κρατά υπό έλεγχο. -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/src/generic/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | The self-hosted productivity platform that keeps you in control -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | La plataforma de productividad auto-alojada que te mantiene al mando -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/eu-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Kontrola zuri ematen dizun norberak ostatutako produktibitate plataforma -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/eu-ES/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fa-FA/short_description.txt: -------------------------------------------------------------------------------- 1 | بستر بهره‌وری خود میزبان که به شما اختیار کامل می‌دهد -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fa-FA/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Itse ylläpidettävä tuottavuusalusta, joka säilyttää kontrollin sinulla -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | La plateforme de productivité auto-hébergée qui vous permet de garder le contrôl -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/is-IS/short_description.txt: -------------------------------------------------------------------------------- 1 | Sjálfhýsta Nextcloud-kerfið er opið og frjálst, og heldur þér við stjórnvölinn -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/is-IS/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | La piattaforma di produttività auto-gestita che ti lascia al comando -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 컨트롤 가능한 자체 호스팅 생산성 플랫폼 -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/lt-LT/short_description.txt: -------------------------------------------------------------------------------- 1 | Savarankiška platforma, leidžianti Jums išlaikyti kontrolę -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/lt-LT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Het eigen-hosting productiviteitsplatform waarmee je zelf in control bent -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Oprogramowanie biurowe uruchamiane na własnym hostingu, który zapewnia kontrolę -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | A plataforma de produtividade auto-hospedada que mantém você no controle -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | A plataforma de produtividade auto-alojada que o/a mantém no controlo -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ro-RO/short_description.txt: -------------------------------------------------------------------------------- 1 | Platforma găzduită și controlată de tine -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/ro-RO/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sl-SL/short_description.txt: -------------------------------------------------------------------------------- 1 | Zasebno produkcijsko okolje pod vašim nadzorom. -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sl-SL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sr-SR/short_description.txt: -------------------------------------------------------------------------------- 1 | Платформа продуктивности под вашом контролом -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sr-SR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Produktivitetsplattformen där du är din egen värd och håller dig i kontroll -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Sizin kontrolunuz altında barındırılan üretkenlik platformu -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/uk-UK/short_description.txt: -------------------------------------------------------------------------------- 1 | Платформа з власним хостингом, яка надає можливість контролювати ваші ресурси -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/uk-UK/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/vi-VI/short_description.txt: -------------------------------------------------------------------------------- 1 | Nền tảng năng suất tự lưu trữ giúp bạn kiểm soát -------------------------------------------------------------------------------- /src/generic/fastlane/metadata/android/vi-VI/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ar-AR/short_description.txt: -------------------------------------------------------------------------------- 1 | منصة إنتاجية ذاتية الاستضافة تبقيك متحكمًا (نسخة المطوريين) -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ar-AR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/bg-BG/short_description.txt: -------------------------------------------------------------------------------- 1 | Самостоятелно хостваната платформа за производителност, която ви помага да поддъ -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/bg-BG/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | La plataforma de productivitat privada (auto-allotjada) que us dóna el control s -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Platforma pro produktivitu hostovaná u vás, kde vaše data jsou opravdu vaše (výv -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- 1 | Vært i eget hus produktivitets platform, hvor du bevarer kontrollen. (tidlig udv -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/da-DK/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Die selbst gehostete Produktivitätsplattform gibt Ihnen die volle Kontrolle (Vor -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- 1 | Η αυτόνομη πλατφόρμα λειτουργικότητας που σας κρατά υπό έλεγχο (προεπισκόπηση έκ -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190520.txt: -------------------------------------------------------------------------------- 1 | de3508c4e Merge pull request #4036 from nextcloud/wordingForAPK 2 | 64b008694 [tx-robot] updated from transifex 3 | 821b3b361 [tx-robot] updated from transifex 4 | 8bf577510 daily dev 20190518 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190619.txt: -------------------------------------------------------------------------------- 1 | 776a144ff [tx-robot] updated from transifex 2 | 209428489 [tx-robot] updated from transifex 3 | f41885b62 [tx-robot] updated from transifex 4 | 94573ccf8 [tx-robot] updated from transifex 5 | f704fa374 daily dev 20190615 6 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190622.txt: -------------------------------------------------------------------------------- 1 | 6cf5eafe9 [tx-robot] updated from transifex 2 | d9a24cb34 daily dev 20190621 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190629.txt: -------------------------------------------------------------------------------- 1 | af9a7feeb Merge pull request #4185 from nextcloud/fixCreateAsset 2 | 29254bb0b use index.php to create asset in Collabora 3 | ff4848127 daily dev 20190627 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190701.txt: -------------------------------------------------------------------------------- 1 | 712f860e9 Merge pull request #4179 from nextcloud/buttonColor 2 | 89dff76cd [tx-robot] updated from transifex 3 | a6b27cc92 daily dev 20190629 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190702.txt: -------------------------------------------------------------------------------- 1 | 0fc092a77 Better way to colorize text (#4193) 2 | 49d038d85 npe in file owner after upgrade (#4191) 3 | c8d9a791f better way to colorize text 4 | b5e69db76 npe in file owner after upgrade 5 | 3a7755e44 daily dev 20190701 6 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190703.txt: -------------------------------------------------------------------------------- 1 | 43ac61409 Remove legacy AccountUtils (#4117) 2 | 23f7c2f46 Remove legacy AccountUtils 3 | 0a10bc06d daily dev 20190702 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190704.txt: -------------------------------------------------------------------------------- 1 | 337e80609 Merge pull request #4198 from nextcloud/wrongNameInEmail 2 | 0e26340a1 use correct file for message while sharing via link 3 | d78900e07 [tx-robot] updated from transifex 4 | 7424520f0 daily dev 20190703 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190713.txt: -------------------------------------------------------------------------------- 1 | 84d4d16c1 Merge pull request #4225 from nextcloud/changelog370 2 | 453584613 Update changelog to 3.7.0 3 | 9fa458e55 daily dev 20190711 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190716.txt: -------------------------------------------------------------------------------- 1 | 2a13825fe Merge pull request #4226 from nextcloud/runDrone 2 | d9d9ad51c Run drone only if source file changed 3 | 2c41e9289 [tx-robot] updated from transifex 4 | 7d224f744 daily dev 20190713 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190720.txt: -------------------------------------------------------------------------------- 1 | b3269e696 Merge pull request #4242 from nextcloud/tintEdit 2 | a22a52ab8 new approach for tinted cursors 3 | 813a448bc [tx-robot] updated from transifex 4 | 181fb374e daily dev 20190717 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190723.txt: -------------------------------------------------------------------------------- 1 | eb6ba3de1 fix check if source code was modified (#4250) 2 | d5691e274 fix check if source code was modified 3 | 5a4783000 [tx-robot] updated from transifex 4 | 5b0a53dbe [tx-robot] updated from transifex 5 | e455de56f daily dev 20190720 6 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190727.txt: -------------------------------------------------------------------------------- 1 | e4fb5b0a7 Merge pull request #4263 from nextcloud/removeDocument 2 | e382365c0 [tx-robot] updated from transifex 3 | c27a33ca1 daily dev 20190726 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190731.txt: -------------------------------------------------------------------------------- 1 | e427e4e61 Merge pull request #4283 from nextcloud/v371 2 | 011539440 release 3.7.1 3 | 674bb277a [tx-robot] updated from transifex 4 | 84e36293e daily dev 20190730 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190803.txt: -------------------------------------------------------------------------------- 1 | 0469db38c Fix local state if fragment is initialized before services (#4262) 2 | bfb3bfd9e Fix upload and delete to actually delete (#4287) 3 | 0711815a7 [tx-robot] updated from transifex 4 | 017e85109 daily dev 20190802 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190810.txt: -------------------------------------------------------------------------------- 1 | 40bb913a1 Bump hwsecurity-fido from 2.4.1 to 2.4.5 (#4303) 2 | ce8124ce1 [tx-robot] updated from transifex 3 | 516efa140 daily dev 20190809 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190827.txt: -------------------------------------------------------------------------------- 1 | f2afee900 Merge pull request #4416 from nextcloud/noStorageManager 2 | 70ea95998 storage manager can be null 3 | 56e0fd081 [tx-robot] updated from transifex 4 | bd62476e1 daily dev 20190824 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190829.txt: -------------------------------------------------------------------------------- 1 | 4092eef8a [tx-robot] updated from transifex 2 | 4b0506c8e daily dev 20190828 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190905.txt: -------------------------------------------------------------------------------- 1 | 7bc162ba3 Merge pull request #4458 from nextcloud/community 2 | 7fae76294 rename participate -> community 3 | e8d585edd Remote wipe (#4455) 4 | 4c0e1c076 Update MimeTypes (#4434) 5 | 0b26aa775 Remote wipe 6 | 9168446f5 daily dev 20190904 7 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190906.txt: -------------------------------------------------------------------------------- 1 | 67f6f7d0d Merge pull request #4461 from nextcloud/literal 2 | 9d3e28d01 do not use literals in conditional statements 3 | d53c17c0f [tx-robot] updated from transifex 4 | e43fb87c3 daily dev 20190905 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190913.txt: -------------------------------------------------------------------------------- 1 | 041a74bab [tx-robot] updated from transifex 2 | bb7055f1e [tx-robot] updated from transifex 3 | fd19c756d daily dev 20190911 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20190926.txt: -------------------------------------------------------------------------------- 1 | 11cd2cd39 [tx-robot] updated from transifex 2 | dfb616fcf [tx-robot] updated from transifex 3 | 30e9b0ed5 daily dev 20190924 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191017.txt: -------------------------------------------------------------------------------- 1 | e47daaffd Merge pull request #4684 from nextcloud/codacy2 2 | 3ef96f887 Merge pull request #4677 from nextcloud/deprecate-set-account-logic 3 | 4f815e47b daily dev 20191016 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191031.txt: -------------------------------------------------------------------------------- 1 | c4e20a652 Merge pull request #4762 from nextcloud/color 2 | af63eed65 overwrite in values-night/colors only values that differ move branding colors back to setup.xml 3 | a9fcc7b03 daily dev 20191030 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191108.txt: -------------------------------------------------------------------------------- 1 | 403fc8756 [tx-robot] updated from transifex 2 | 142c79bc0 daily dev 20191107 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191114.txt: -------------------------------------------------------------------------------- 1 | ed8b9cbb7 Merge pull request #4713 from nextcloud/ezaquarii/remove-set-account-from-first-run-activity 2 | f38900d98 [tx-robot] updated from transifex 3 | e43ef8e06 daily dev 20191113 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191121.txt: -------------------------------------------------------------------------------- 1 | b9ff6cecf Merge pull request #4843 from Unpublished/fix4842 2 | 0977c9d2e daily dev 20191120 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20191214.txt: -------------------------------------------------------------------------------- 1 | b56a6b930 Merge pull request #4982 from nextcloud/authIntent 2 | 7bbb8833e Merge pull request #4994 from nextcloud/dependabot/gradle/androidx.test-orchestrator-1.2.0 3 | e20e2797a daily dev 20191213 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20200118.txt: -------------------------------------------------------------------------------- 1 | 82de38179 Merge pull request #5220 from nextcloud/changelog-master-stable-3.10.0 2 | 8f929ab33 Add changelog for 3.10.0 3 | ae6251bf6 daily dev 20200117 4 | library commit: cb8e616b61b94bad121ed3d720476125c0ff252b 5 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20200125.txt: -------------------------------------------------------------------------------- 1 | 3b49f56d1 [tx-robot] updated from transifex 2 | library commit: 8a39288bf557dac3044ead6a841db3a36bf9ed0d 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20200129.txt: -------------------------------------------------------------------------------- 1 | 9fa16494b Merge pull request #5294 from nextcloud/reliableDev 2 | 2040a3507 daily dev 20200128 3 | library commit: 721c01bc369955139daf218377c081d05c82f317 4 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/changelogs/20220322.txt: -------------------------------------------------------------------------------- 1 | 2 | Update Nextcloud Android library 3 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/src/versionDev/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | The self-hosted productivity platform that keeps you in control (dev preview ver -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | La plataforma de productividad auto-alojada que te mantiene al mando (versión de -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/eu-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Kontrola zuri ematen dizun norberak ostatutako produktibitate plataforma (garape -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/eu-ES/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fa-FA/short_description.txt: -------------------------------------------------------------------------------- 1 | بستر خودمیزبانی که به شما اختیار کامل می‌دهد -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fa-FA/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Itse ylläpidettävä tuottavuusalusta, joka säilyttää kontrollin sinulla (kehitysv -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | La plateforme de productivité auto-hébergée qui vous permet de garder le contrôl -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/is-IS/short_description.txt: -------------------------------------------------------------------------------- 1 | Sjálfhýsta Nextcloud-kerfið er opið og frjálst, og heldur þér við stjórnvölinn ( -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/is-IS/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | La piattaforma di produttività auto-gestita che ti lascia al comando (versione i -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- 1 | 컨트롤 가능한 자체 호스팅 생산성 플랫폼. 2 | 이는 공식 개발 버전으로, 테스트되지 않은 새로운 기능을 매일 샘플로 제공하므로 불안정과 데이터 손실이 발생할 수 있습니다. 이 애플리케이션은 기꺼이 테스트하고 버그가 발생하면 보고하는 사용자를 대상으로 합니다. 생산적인 작업에는 사용하지 마십시오! 3 | 4 | 공식 개발 버전 및 일반 버전은 모두 F-droid에서 사용할 수 있으며, 동시에 설치할 수 있습니다. -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 컨트롤 가능한 자체 호스팅 생산성 플랫폼 (디바이스 미리 보기 버전) -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/lt-LT/short_description.txt: -------------------------------------------------------------------------------- 1 | Savarankiška platforma, leidžianti Jums išlaikyti kontrolę (dev versija) -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/lt-LT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Het eigen-hosting productiviteitsplatform waarmee je zelf in control bent (dev p -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Oprogramowanie biurowe uruchamiane na własnym hostingu, które zapewnia kontrolę -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | A plataforma de produtividade auto-hospedada que mantém você no controle (versão -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | A plataforma de produtividade auto alojada que o mantém em controle (versão \"pr -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ro-RO/short_description.txt: -------------------------------------------------------------------------------- 1 | Platforma găzduită și controlată de tine(versiunea pentru dezvoltatori) -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/ro-RO/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sl-SL/short_description.txt: -------------------------------------------------------------------------------- 1 | Zasebno produkcijsko okolje pod vašim nadzorom (razvojna predogledna različica). -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sl-SL/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sr-SR/short_description.txt: -------------------------------------------------------------------------------- 1 | Платформа продуктивности под вашом контролом (развојна верзија) -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sr-SR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Produktivitetsplattformen där du är din egen värd och håller dig i kontroll (dev -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Sizin denetiminiz altında barındırılan üretkenlik platformu (geliştirici ön izle -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/uk-UK/short_description.txt: -------------------------------------------------------------------------------- 1 | Платформа з власним хостингом, яка надає можливість контролювати ваші ресурси (в -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/uk-UK/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/vi-VI/short_description.txt: -------------------------------------------------------------------------------- 1 | Nền tảng năng suất tự lưu trữ giúp bạn kiểm soát (phiên bản xem trước của nhà ph -------------------------------------------------------------------------------- /src/versionDev/fastlane/metadata/android/vi-VI/title.txt: -------------------------------------------------------------------------------- 1 | Nextcloud Dev 2 | -------------------------------------------------------------------------------- /user_manual/images/android-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-1.png -------------------------------------------------------------------------------- /user_manual/images/android-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-10.png -------------------------------------------------------------------------------- /user_manual/images/android-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-11.png -------------------------------------------------------------------------------- /user_manual/images/android-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-12.png -------------------------------------------------------------------------------- /user_manual/images/android-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-13.png -------------------------------------------------------------------------------- /user_manual/images/android-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-14.png -------------------------------------------------------------------------------- /user_manual/images/android-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-15.png -------------------------------------------------------------------------------- /user_manual/images/android-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-2.png -------------------------------------------------------------------------------- /user_manual/images/android-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-3.png -------------------------------------------------------------------------------- /user_manual/images/android-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-4.png -------------------------------------------------------------------------------- /user_manual/images/android-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-5.png -------------------------------------------------------------------------------- /user_manual/images/android-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-6.png -------------------------------------------------------------------------------- /user_manual/images/android-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-8.png -------------------------------------------------------------------------------- /user_manual/images/android-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/android-9.png -------------------------------------------------------------------------------- /user_manual/images/davdroid-1-button-in-nextcloud-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/davdroid-1-button-in-nextcloud-app.png -------------------------------------------------------------------------------- /user_manual/images/davdroid-2-install-davdroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/davdroid-2-install-davdroid.png -------------------------------------------------------------------------------- /user_manual/images/davdroid-3-enter-password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/davdroid-3-enter-password.png -------------------------------------------------------------------------------- /user_manual/images/davdroid-4-specify-owner-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/android/6daabb0617f384a01cba778d850ea9bb803e3ffb/user_manual/images/davdroid-4-specify-owner-email.png -------------------------------------------------------------------------------- /user_manual/index.rst: -------------------------------------------------------------------------------- 1 | .. _contents: 2 | 3 | Nextcloud Android App Manual 4 | ============================ 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | android_app 10 | --------------------------------------------------------------------------------