i2pd for Android
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 2a4fa8c036
fix script paths
2 years ago
.github/workflows fix script paths 2 years ago
app update i2pd assets 2 years ago
binary/jni update libraries, add binary build files 2 years ago
contrib/binary_pack fix script paths 2 years ago
fastlane/metadata/android update changelog 2 years ago
gradle/wrapper rework main ui, change theme, remove unused code 2 years ago
.gitignore import android code from i2pd repo 4 years ago
.gitmodules [jni] switch to build from sources (#32) 2 years ago
LICENSE upload license 3 years ago
README.md update README 2 years ago
build.gradle fix JNI string release before executing C++ functions, update gradle to 7.1.3 2 years ago
build.xml import android code from i2pd repo 4 years ago
gradle.properties fix start on API lesser 21 3 years ago
gradlew update gradlew, gh action 2 years ago
gradlew.bat update gradlew, gh action 2 years ago
settings.gradle i2pd 2.33.0-63, tabulation, gradle configuration 4 years ago

README.md

GitHub release License Android CI

i2pd android

This repository contains Android application sources of i2pd

Get it on F-Droid

How to build

Install OpenJDK 11+, g++, rename (used for building modules), gradle 5.1+

sudo apt-get install g++ rename openjdk-11-jdk gradle

If your system provides gradle with version < 5.1, download it from gradle homepage:

https://gradle.org/install/

Download and prepare Android SDK for building

Android SDK Available here:

https://developer.android.com/studio#downloads

Download Android SDK, unpack it to temporary directory /tmp/anrdoid-sdk and install it (in /opt/android-sdk for example) with required packages

mkdir /tmp/android-sdk
cd /tmp/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;31.0.0" "cmake;3.18.1" "ndk;21.4.7075529"

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/21.4.7075529

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