2020-06-06 02:35:22 +00:00
|
|
|
# i2pd android
|
2020-06-06 00:51:41 +00:00
|
|
|
|
2020-06-06 02:35:22 +00:00
|
|
|
### Install OpenJDK, gradle, download Android SDK and NDK r19c
|
|
|
|
https://gradle.org/install/
|
2020-06-06 03:30:00 +00:00
|
|
|
|
2020-06-06 02:35:22 +00:00
|
|
|
https://developer.android.com/studio#downloads
|
2020-06-06 03:30:00 +00:00
|
|
|
|
2020-06-06 02:35:22 +00:00
|
|
|
https://developer.android.com/ndk/
|
2020-06-06 00:51:41 +00:00
|
|
|
|
2020-06-06 02:35:22 +00:00
|
|
|
### Clone repository with submodules
|
2021-02-10 08:26:32 +00:00
|
|
|
git clone --recurse-submodules https://github.com/PurpleI2P/i2pd-android.git
|
2020-06-06 02:35:22 +00:00
|
|
|
|
|
|
|
### Compile application
|
|
|
|
export ANDROID_SDK_ROOT=/opt/android-sdk
|
|
|
|
export ANDROID_NDK_HOME=/opt/android-ndk-r19c
|
|
|
|
|
|
|
|
gradle clean assembleDebug
|
|
|
|
|
2021-02-10 08:26:32 +00:00
|
|
|
You will find APKs in `app/build/outputs/apk`
|