You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
R4SAS
4ee4f94c18
|
3 years ago | |
---|---|---|
.github/workflows | 3 years ago | |
app | 3 years ago | |
binary/jni | 3 years ago | |
fastlane/metadata/android | 3 years ago | |
gradle/wrapper | 3 years ago | |
.gitignore | 4 years ago | |
.gitmodules | 3 years ago | |
LICENSE | 4 years ago | |
README.md | 3 years ago | |
build.gradle | 4 years ago | |
build.xml | 4 years ago | |
gradle.properties | 4 years ago | |
gradlew | 3 years ago | |
gradlew.bat | 3 years ago | |
settings.gradle | 4 years ago |
README.md
i2pd android
This repository contains Android application sources of i2pd
How to build
Install OpenJDK, g++, rename (used for building modules), gradle 5.1+, download Android SDK
sudo apt-get install g++ rename gradle
Android SDK Available here:
https://developer.android.com/studio#downloads
If your system provides gradle with version < 5.1, download it from gradle homepage:
Prepare Android SDK for building
Download Android SDK, unpack it to any directory (/opt/anrdoid-sdk
for example) and install required packages
mkdir /opt/android-sdk
cd /opt/android-sdk
wget https://dl.google.com/android/repository/commandlinetools-linux-8092744_latest.zip
unzip commandlinetools-linux-8092744_latest.zip
# install required tools
./cmdline-tools/bin/sdkmanager --sdk_root=/opt/android-sdk "build-tools;29.0.3" "cmake;3.18.1" "ndk;23.1.7779620"
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=$ANDROID_SDK_ROOT/ndk/23.1.7779620
pushd app/jni
./build_boost.sh
./build_openssl.sh
./build_miniupnpc.sh
popd
gradle clean assembleDebug
You will find APKs in app/build/outputs/apk