All Projects β†’ nextcloud β†’ Android

nextcloud / Android

Licence: gpl-2.0
πŸ“± Nextcloud Android app

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects
shell
77523 projects
ruby
36898 projects - #4 most used programming language
python
139335 projects - #7 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to Android

Server
☁️ Nextcloud server, a safe home for all your data
Stars: ✭ 17,723 (+564.03%)
Mutual labels:  hacktoberfest, nextcloud, open-source, opensource
Place2live
Analysis of the characteristics of different countries
Stars: ✭ 30 (-98.88%)
Mutual labels:  hacktoberfest, open-source, opensource
Data Structures And Algorithms In Cpp
This repository is in development phase and will soon provide you with c++ code of various data structures and algorithms
Stars: ✭ 176 (-93.41%)
Mutual labels:  hacktoberfest, open-source, opensource
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+241.36%)
Mutual labels:  hacktoberfest, open-source, mobile
Hacktoberfest 2020
Welcome to Open-source! Simply add your details to contributors | Repo for Hacktoberfest 2020 βœ…
Stars: ✭ 621 (-76.73%)
Mutual labels:  hacktoberfest, open-source, opensource
Enclosure Picroft
Mycroft interface for Raspberry Pi environment
Stars: ✭ 649 (-75.68%)
Mutual labels:  hacktoberfest, open-source, opensource
Spreed
πŸ“žπŸ˜€ Nextcloud Talk – chat, video & audio calls for Nextcloud
Stars: ✭ 994 (-62.76%)
Mutual labels:  hacktoberfest, nextcloud, open-source
Freedomotic
Open IoT Framework
Stars: ✭ 354 (-86.74%)
Mutual labels:  hacktoberfest, open-source, opensource
Cidram
CIDRAM: Classless Inter-Domain Routing Access Manager.
Stars: ✭ 86 (-96.78%)
Mutual labels:  hacktoberfest, open-source, opensource
Flutter Mvvm Provider Demo
Stars: ✭ 89 (-96.67%)
Mutual labels:  mobile-app, hacktoberfest, mobile
Laracom
Laravel FREE E-Commerce Software
Stars: ✭ 1,570 (-41.18%)
Mutual labels:  hacktoberfest, open-source, opensource
Mail
πŸ’Œ Mail app for Nextcloud
Stars: ✭ 528 (-80.22%)
Mutual labels:  hacktoberfest, nextcloud, open-source
Awesome Open Source Supporters
⭐️ A curated list of companies that offer their services for free to Open Source projects
Stars: ✭ 457 (-82.88%)
Mutual labels:  hacktoberfest, open-source, opensource
Open Source Mac Os Apps
πŸš€ Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps
Stars: ✭ 28,908 (+983.1%)
Mutual labels:  hacktoberfest, open-source, opensource
Cortx
CORTX Community Object Storage is 100% open source object storage uniquely optimized for mass capacity storage devices.
Stars: ✭ 426 (-84.04%)
Mutual labels:  hacktoberfest, open-source, opensource
Hacktoberfest2020
beginner-friendly project to help you in open-source contributions. Made specifically for contributions in HACKTOBERFEST 2020! Hello World Programs in any language and C and Cpp program , Please leave a star ⭐ to support this project! ✨
Stars: ✭ 31 (-98.84%)
Mutual labels:  hacktoberfest, open-source, opensource
Client theming
πŸ’» Nextcloud themed desktop client - Moved over to https://github.com/nextcloud/desktop
Stars: ✭ 201 (-92.47%)
Mutual labels:  nextcloud, open-source, opensource
Augur
Python library and web service for Open Source Software Health and Sustainability metrics & data collection.
Stars: ✭ 304 (-88.61%)
Mutual labels:  hacktoberfest, open-source, opensource
Open Pixel Art
A collaborative pixel art project to teach people how to contribute to open-source
Stars: ✭ 331 (-87.6%)
Mutual labels:  hacktoberfest, open-source, opensource
Activity
⚑️ Activity app for Nextcloud
Stars: ✭ 67 (-97.49%)
Mutual labels:  hacktoberfest, nextcloud, open-source

Nextcloud Android app πŸ“±

Build Status Codacy Badge Releases irc

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 πŸš€

If you want to contribute to Nextcloud, you are very welcome:

  • on our IRC channels irc and irc on freenode
  • our forum at https://help.nextcloud.com
  • for translations of the app on Transifex
  • opening issues and PRs (including a corresponding issue)

Contribution Guidelines & License πŸ“œ

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 how to contribute: https://nextcloud.com/contribute/

Start contributing πŸ› οΈ

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 πŸ”

With a linux computer:

  • enable USB-Debugging in your smartphones developer settings and connect it via USB
  • open command prompt/terminal
  • enter adb logcat | grep "$(adb shell ps | awk '/com.nextcloud.client/{print $2}')" > 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 ps | findstr com.nextcloud.client and use the second place of this output (it is the first integer, e.g. 18841) as processID in the following command:
  • adb logcat | findstr <processID> > %HOMEPATH%\Downloads\logcatOutput.txt (This will produce a logcatOutput.txt file in your downloads)
  • if the processID is 18841, an example command is: adb logcat | findstr 18841 > %HOMEPATH%\Downloads\logcatOutput.txt (You might cancel the process after a while manually: it will not be exited automatically.)

On a device (with root) πŸ”§

  • open terminal app (can be enabled in developer options)
  • get root access via "su"
  • enter logcat -d -f /sdcard/logcatOutput.txt
  • you will have to filter the output manually, as above approach is not working on device

or

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

Development version πŸ”¨

Support ⛑️

If you need assistance or want to ask a question about the Android app, you are welcome to ask for support in our Forums or the IRC-Channel. 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 πŸ“œ

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].