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.
- Get the source code.
git clone --recursive https://github.com/meganz/android.git
-
Install in your system the Android NDK 21 (latest version tested: NDK r21d).
-
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
- 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
- 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
-
Download the link https://mega.nz/file/t81HSYJI#KQNzSEqmGVSXfwmQx2HMJy3Jo2AcDfYm4oiMP_CFW6s, uncompress it and put the folder
webrtc
in the pathapp/src/main/jni/megachat/
. -
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
-
Build SDK by running
./build.sh all
atapp/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, modifyLOG_FILE
variable inbuild.sh
from/dev/null
to a certain text file and run./build.sh all
again for viewing the build errors. -
Download the link https://mega.nz/#!1tcl3CrL!i23zkmx7ibnYy34HQdsOOFAPOqQuTo1-2iZ5qFlU7-k, uncompress it and put the folders
debug
andrelease
in the pathapp/src/
. -
Open the project with Android Studio, let it build the project and hit Run.
To use the geolocation feature you need a Google Maps API key:
-
To get one, follow the directions here: https://developers.google.com/maps/documentation/android/signup.
-
Once you have your key, replace the "google_maps_key" string in these files:
app/src/debug/res/values/google_maps_api.xml
andapp/src/release/res/values/google_maps_api.xml
.