All Projects → meganz → Android

meganz / Android

Licence: other
MEGA Android App

Programming Languages

java
68154 projects - #9 most used programming language
kotlin
9241 projects

Projects that are alternatives of or similar to Android

Darkwire.io
End-to-end encrypted instant web chat
Stars: ✭ 594 (-8.76%)
Mutual labels:  privacy, end-to-end-encryption
Megasync
Easy automated syncing between your computers and your MEGA Cloud Drive
Stars: ✭ 975 (+49.77%)
Mutual labels:  privacy, end-to-end-encryption
Seven23 server
Fully manual budget app to track your expenses. Opensource, with privacy by design.
Stars: ✭ 20 (-96.93%)
Mutual labels:  privacy, end-to-end-encryption
Seven23
Fully manual budget app to track personal expenses. 100% opensource, with privacy by design.
Stars: ✭ 36 (-94.47%)
Mutual labels:  privacy, end-to-end-encryption
Brandis
Brandis: End-to-end encryption for everyone
Stars: ✭ 77 (-88.17%)
Mutual labels:  privacy, end-to-end-encryption
Megachat
MEGA C++ SDK for chat-enabled apps
Stars: ✭ 61 (-90.63%)
Mutual labels:  privacy, end-to-end-encryption
Sdk
MEGA C++ SDK
Stars: ✭ 980 (+50.54%)
Mutual labels:  privacy, end-to-end-encryption
Userbase
Create secure and private web apps using only static JavaScript, HTML, and CSS.
Stars: ✭ 2,029 (+211.67%)
Mutual labels:  privacy, end-to-end-encryption
Capillary
Capillary is a library to simplify the sending of end-to-end encrypted push messages from Java-based application servers to Android clients.
Stars: ✭ 445 (-31.64%)
Mutual labels:  privacy, end-to-end-encryption
Openpyn Nordvpn
Easily connect to and switch between, OpenVPN servers hosted by NordVPN on Linux (+patch leakes)
Stars: ✭ 544 (-16.44%)
Mutual labels:  privacy
Canvasblocker
A Firefox extension to protect from being fingerprinted.
Stars: ✭ 608 (-6.61%)
Mutual labels:  privacy
Recordlinkage
A toolkit for record linkage and duplicate detection in Python
Stars: ✭ 532 (-18.28%)
Mutual labels:  privacy
Gradle Advanced Build Version
A plugin to generate the Android version code and version name automatically based on git commits number, date and ...
Stars: ✭ 545 (-16.28%)
Mutual labels:  android-studio
Yett
🔐A small webpage library to control the execution of (third party) scripts
Stars: ✭ 615 (-5.53%)
Mutual labels:  privacy
Spotifyadblock
Protect your privacy by blocking all annoying Spotify ads & analytics in Linux, OSX and Windows with hosts file.
Stars: ✭ 540 (-17.05%)
Mutual labels:  privacy
Awesome Federated Learning
Federated Learning Library: https://fedml.ai
Stars: ✭ 624 (-4.15%)
Mutual labels:  privacy
Dsvpn
A Dead Simple VPN.
Stars: ✭ 4,894 (+651.77%)
Mutual labels:  privacy
Tor2web
Tor2web is an HTTP proxy software that enables access to Tor Hidden Services by mean of common web browsers
Stars: ✭ 531 (-18.43%)
Mutual labels:  privacy
Monero
Monero: the secure, private, untraceable cryptocurrency
Stars: ✭ 6,503 (+898.92%)
Mutual labels:  privacy
Android Studio Mvp Template
Android MVP template for Android Studio
Stars: ✭ 636 (-2.3%)
Mutual labels:  android-studio

MEGA Android Client

A fully-featured client to access your Cloud Storage provided by MEGA.

This document will guide you to build the application on a Linux machine with Android Studio.

Setup development environment

Build & Run the application

  1. Get the source code.
git clone --recursive https://github.com/meganz/android.git
  1. Install in your system the Android NDK 21 (latest version tested: NDK r21d).

  2. Export NDK_ROOT variable or create a symbolic link at ${HOME}/android-ndk to point to your Android NDK installation path.

export NDK_ROOT=/path/to/ndk
ln -s /path/to/ndk ${HOME}/android-ndk
  1. Export ANDROID_HOME variable or create a symbolic link at ${HOME}/android-sdk to point your Android SDK installation path.
export ANDROID_HOME=/path/to/sdk
ln -s /path/to/sdk ${HOME}/android-sdk
  1. Export JAVA_HOME variable or create a symbolic link at ${HOME}/android-java to point your Java installation path.
export JAVA_HOME=/path/to/jdk
ln -s /path/to/jdk ${HOME}/android-java
  1. Download the link https://mega.nz/file/t81HSYJI#KQNzSEqmGVSXfwmQx2HMJy3Jo2AcDfYm4oiMP_CFW6s, uncompress it and put the folder webrtc in the path app/src/main/jni/megachat/.

  2. Before running the building script, install the required packages. For example for Ubuntu or other Debian-based distro:

sudo apt install build-essential swig automake libtool autoconf cmake
  1. Build SDK by running ./build.sh all at app/src/main/jni/. You could also run ./build.sh clean to clean the previous configuration. IMPORTANT: check that the build process finished successfully, it should finish with the Task finished OK message. Otherwise, modify LOG_FILE variable in build.sh from /dev/null to a certain text file and run ./build.sh all again for viewing the build errors.

  2. Download the link https://mega.nz/#!1tcl3CrL!i23zkmx7ibnYy34HQdsOOFAPOqQuTo1-2iZ5qFlU7-k, uncompress it and put the folders debug and release in the path app/src/.

  3. Open the project with Android Studio, let it build the project and hit Run.

Notice

To use the geolocation feature you need a Google Maps API key:

  1. To get one, follow the directions here: https://developers.google.com/maps/documentation/android/signup.

  2. Once you have your key, replace the "google_maps_key" string in these files: app/src/debug/res/values/google_maps_api.xml and app/src/release/res/values/google_maps_api.xml.

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].