2020-06-06 05:35:22 +03:00
|
|
|
# i2pd android
|
2020-06-06 03:51:41 +03:00
|
|
|
|
2021-02-28 21:27:18 +08:00
|
|
|
### Install OpenJDK, gradle 5.1+ (6.8.3 has been tested and is working ok), download Android SDK and NDK r21e
|
2020-06-06 05:35:22 +03:00
|
|
|
https://gradle.org/install/
|
2020-06-06 06:30:00 +03:00
|
|
|
|
2020-06-06 05:35:22 +03:00
|
|
|
https://developer.android.com/studio#downloads
|
2020-06-06 06:30:00 +03:00
|
|
|
|
2020-06-06 05:35:22 +03:00
|
|
|
https://developer.android.com/ndk/
|
2020-06-06 03:51:41 +03:00
|
|
|
|
2020-06-06 05:35:22 +03:00
|
|
|
### Clone repository with submodules
|
2021-02-10 11:26:32 +03:00
|
|
|
git clone --recurse-submodules https://github.com/PurpleI2P/i2pd-android.git
|
2020-06-06 05:35:22 +03:00
|
|
|
|
|
|
|
### Compile application
|
|
|
|
export ANDROID_SDK_ROOT=/opt/android-sdk
|
2021-02-28 21:27:18 +08:00
|
|
|
export ANDROID_NDK_HOME=/opt/android-ndk-r21e
|
2020-06-06 05:35:22 +03:00
|
|
|
|
|
|
|
gradle clean assembleDebug
|
|
|
|
|
2021-02-10 11:26:32 +03:00
|
|
|
You will find APKs in `app/build/outputs/apk`
|