No Description

Nextcloud bot dd5adbbb41 Fix(l10n): Update translations from Transifex 1 year ago
.devcontainer 6c12d14cec remove trailing comma 1 year ago
.github fa1e483c5d 🔄 synced local '.github/workflows/' with remote 'config/workflows/' 1 year ago
.idea aeac90881d wip 2 years ago
.tx 496e916534 [tx-robot] Update transifex configuration 2 years ago
app dd5adbbb41 Fix(l10n): Update translations from Transifex 1 year ago
appscan c8f67462ec lock in on java17 1 year ago
doc 4fe4936007 Android screenshot 7 years ago
drawable_resources 6ccefc4e44 Remove unused icons from project directory 1 year ago
fastlane 38a9590bcc Move per-flavor fastlane metadata to top-level src/ folder 2 years ago
gradle 17658fc148 Bump com.android.tools.build:gradle to 8.0.1 1 year ago
scripts 6cda6a4326 Analysis: update lint results to reflect reduced error/warning count 1 year ago
src 49680148dd Fix(l10n): 🔠 Update translations from Transifex 2 years ago
user_manual 15bc3966b6 fix image dimensions 3 years ago
.codecov.yml 24e3f035ff Codecov: post comment only if there are coverage changes AND 2 reports have been received 2 years ago
.drone.yml 4cf2be8efa test on Stable 27 1 year ago
.editorconfig 740b59f551 Update editorconfig to latest spotless checks 2 years ago
.gitignore 7073746309 Use defusedxml for xml parsing instead of etree 3 years ago
.pullapprove.yml 3129c0e68d only one review 6 years ago
CHANGELOG.md 4bcf6f7079 CHANGELOG: Add last two production releases, fix dates, add link 1 year ago
CODE_OF_CONDUCT.md 08a871b7b9 add code of conduct 7 years ago
CONTRIBUTING.md 4dc4513237 fix: typo error in CONTRIBUTING.md 1 year ago
Gemfile b39d3d4182 Add huawei upload 4 years ago
Gemfile.lock ff86c5302a Update fastlane plugins 2 years ago
ICONS.txt 9ffb4c6639 #781 add icons to website/twitter on user info screen, cleanup 8 years ago
LICENSE.txt bdc0332c23 Copyright note fixes 12 years ago
README.md a0694e8b8f Merge pull request #12054 from nextcloud/jr-readme-starter-issues-link-fix 1 year ago
SECURITY.md 2e98dcd11d Create SECURITY.md 3 years ago
SETUP.md 3caa637d1e fix: typo error in SETUP.md 1 year ago
THIRD_PARTY.txt 812cd943db Remove third party licenses for libs we don't use (anymore) 3 years ago
build.gradle 6af9b719f2 update build.gradle 1 year ago
checkstyle.xml af1a61960b Incorporated Checkstyle, findbugs, pmd and lint 8 years ago
gradle.properties 195cee2345 Add empty line eof 1 year ago
gradlew 74683d9eb9 Bump Gradle for Log4j 3 years ago
gradlew.bat 8e643d2f8d Gradle 6.7 4 years ago
jacoco.gradle 53e68eb0f6 Build(deps): Bump com.android.tools.build:gradle from 8.0.1 to 8.0.2 1 year ago
ndk.env ec98c5db52 Centralize NDK and CMAKE versions 3 years ago
ruleset.xml 09da127d29 - rename ruleset 6 years ago
settings.gradle 1917198305 Move optional appscan feature to a separate module to avoid duplicating code between variants 2 years ago
spotbugs-filter.xml b84639672b spotbugs: ignore Room autogenerated classes 2 years ago
suppressions.xml af1a61960b Incorporated Checkstyle, findbugs, pmd and lint 8 years ago

README.md

Nextcloud Android app :iphone:

Build Status Codacy Badge Releases

Download from Google Play Get it on F-Droid

The Android client for Nextcloud. Easily work with your data on your Nextcloud.

App screenshots

How to contribute :rocket:

If you want to contribute to the Nextcloud Android client app, there are many ways to help whether or not you are a coder:

  • helping out other users on our forum at https://help.nextcloud.com
  • providing translations of the app on Transifex
  • reporting problems / suggesting enhancements by opening new issues
  • implementing proposed bug fixes and enhancement ideas by submitting PRs (associated with a corresponding issue preferably)
  • reviewing pull requests and providing feedback on code, implementation, and functionality
  • installing and testing pull request builds, daily/dev builds, or RCs/release candidate builds
  • enhancing Admin, User, or Developer documentation
  • hitting hard on the latest stable release by testing fundamental features and evaluating the user experience
  • proactively getting familiar with how to gather debug logs from your devices (so that you are prepared to provide a detailed report if you encounter a problem with the app in the future)

Contribution Guidelines & License :scroll:

GPLv2. All contributions to this repository from June, 16 2016 on are considered to be licensed under the AGPLv3 or any later version.

Nextcloud doesn't require a CLA (Contributor License Agreement). The copyright belongs to all the individual contributors. Therefore we recommend that every contributor adds following line to the header of a file, if they changed it substantially:

@copyright Copyright (c) <year>, <your name> (<your email address>)

Please read the Code of Conduct. This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.

Please review the guidelines for contributing to this repository.

More information on how to contribute: https://nextcloud.com/contribute/

Start contributing :hammer_and_wrench:

Make sure you read SETUP.md and CONTRIBUTING.md before you start working on this project. But basically: fork this repository and contribute back using pull requests to the master branch. Easy starting points are also reviewing pull requests and working on starter issues.

Getting debug info via logcat :mag:

With a linux computer:

  • enable USB-Debugging in your smartphones developer settings and connect it via USB
  • open command prompt/terminal
  • enter adb logcat --pid=$(adb shell pidof -s 'com.nextcloud.client') > logcatOutput.txt to save the output to this file

Note: You must have adb installed first!

On Windows:

  • download and install Minimal ADB and fastboot
  • enable USB-Debugging in your smartphones developer settings and connect it via USB
  • launch Minimal ADB and fastboot
  • enter adb shell pidof -s 'com.nextcloud.client' and use the output as <processID> in the following command:
  • adb logcat --pid=<processID> > "%USERPROFILE%\Downloads\logcatOutput.txt" (This will produce a logcatOutput.txt file in your downloads)
  • if the processID is 18841, an example command is: adb logcat --pid=18841 > "%USERPROFILE%\Downloads\logcatOutput.txt" (You might cancel the process after a while manually: it will not be exited automatically.)
  • For a PowerShell terminal, replace %USERPROFILE% with $env:USERPROFILE in the commands above.

On a device (with root) :wrench:

  • open terminal app (can be enabled in developer options)
  • get root access via "su"
  • enter logcat -d --pid $(pidof -s com.nextcloud.client) -f /sdcard/logcatOutput.txt

or

Note: Your device needs to be rooted for this approach!

Development version :hammer:

Support :rescue_worker_helmet:

If you need assistance or want to ask a question about the Android app, you are welcome to ask for support in our Forums. If you have found a bug, feel free to open a new Issue on GitHub. Keep in mind, that this repository only manages the Android app. If you find bugs or have problems with the server/backend, you should ask the Nextcloud server team for help!

Remarks :scroll:

Google Play and the Google Play logo are trademarks of Google Inc.