mirror of
https://github.com/PurpleI2P/i2pd-android.git
synced 2025-01-09 22:38:10 +00:00
20 lines
513 B
Markdown
20 lines
513 B
Markdown
# i2pd android
|
|
|
|
### Install OpenJDK, gradle, download Android SDK and NDK r19c
|
|
https://gradle.org/install/
|
|
|
|
https://developer.android.com/studio#downloads
|
|
|
|
https://developer.android.com/ndk/
|
|
|
|
### Clone repository with submodules
|
|
git clone --recurse-submodules https://github.com/PurpleI2P/i2pd-android.git
|
|
|
|
### Compile application
|
|
export ANDROID_SDK_ROOT=/opt/android-sdk
|
|
export ANDROID_NDK_HOME=/opt/android-ndk-r19c
|
|
|
|
gradle clean assembleDebug
|
|
|
|
You will find APKs in `app/build/outputs/apk`
|