1
0
Fork
You've already forked android
0
forked from eduVPN/android
eduVPN for Android
  • Kotlin 68.2%
  • HTML 18.3%
  • Java 7%
  • C++ 3.5%
  • Shell 2.2%
  • Other 0.8%
Find a file
2025年03月28日 11:45:38 +00:00
.github/workflows Update UI tests 2024年04月19日 13:24:26 +02:00
app Issue #13 : Display default list, and warning below 2025年03月12日 13:27:30 +01:00
common Issue #13 : Integrate json list into release builds 2025年03月12日 13:10:13 +01:00
fastlane/metadata/android/en-US prepare for release 2024年10月18日 15:27:41 +02:00
gradle * Update, WG, ics-openvpn, common submodules 2024年10月17日 22:47:41 +02:00
ics-openvpn @e9a2aff91b update ics-openvpn with correct author, more current date 2025年02月12日 23:17:27 +01:00
wireguard @d18f561732 update WireGuard submodule 2025年02月12日 23:05:26 +01:00
.gitignore Fix lint errors 2016年10月15日 11:45:53 +02:00
.gitmodules update URL for eduvpn-common submodule 2024年11月20日 18:21:13 +01:00
build.gradle.kts Update ics-openvpn, switch the Gradle Version Catalogs 2023年12月14日 15:07:15 +01:00
build_app_git.sh prepare for release 2024年10月18日 15:27:41 +02:00
build_app_tar.sh prepare for release 2024年10月18日 15:27:41 +02:00
builder_setup.sh update PLATFORM_VERSION 2025年02月21日 17:20:28 +01:00
CHANGES.md Update CHANGES.md 2025年03月12日 13:29:32 +01:00
COPYING Add GPLv3 copyright notices 2016年10月26日 17:26:58 +02:00
create_release_tar.sh prepare for release 2024年10月18日 15:27:41 +02:00
gradle.properties embed wireguard-android as a submodule 2024年10月04日 12:04:37 +02:00
gradlew Upgrade ics-openvpn to v0.7.34 2022年04月22日 17:03:35 +02:00
gradlew.bat Upgrade ics-openvpn to v0.7.34 2022年04月22日 17:03:35 +02:00
NEW_RELEASE.md prepare for release 2024年02月06日 17:58:55 +01:00
README.md re-add Debian 12 build instructions 2024年10月22日 09:29:44 +02:00
settings.gradle embed wireguard-android as a submodule 2024年10月04日 12:04:37 +02:00

Introduction

This is the eduVPN / Let's Connect! for Android application.

You can clone this repository by executing the following command (provided you have git installed):

$ git clone --recurse-submodules https://codeberg.org/eduVPN/android

Download the app

Stores

Get it on F-Droid Get it on Google Play

APKs

Running with Android Studio

First install the swig and go packages with your operating system package manager.

Make sure you have the latest stable version of Android Studio installed, you can download it from here. Open the project by opening the build.gradle in the root of this repository with Android Studio. Make sure that you have the following packages installed in the SDK Manager (Tools -> SDK Manager):

  • SDK Platforms - Android 10
  • SDK Tools - Android SDK Build Tools
  • SDK Tools - LLDB
  • SDK Tools - CMake
  • SDK Tools - Android SDK Platform-Tools
  • SDK Tools - Android SDK Tools
  • SDK Tools - NDK - 26.1.10909125 version (a later version might work, but is untested)

To find a specific version of a package (for the NDK), check the option 'Show Package Details' in the bottom-lower corner of the SDK Manager.

The app should now build when selecting Run -> Run 'app', or clicking the green play button next to the device selector.

Building

NOTE: building Android applications takes a lot of resources. The VM used to build the Let's Connect! application has 6GB of memory and 50G disk. Anything lower was not tested, but 1GB of memory definitely does not work.

The builder will spew a lot of backtraces/warnings, but does seem to complete eventually.

We last tested this on 2024年10月07日 with Fedora 40 and on 2024年10月22日 with Debian 12.

Dependencies

Fedora

$ sudo dnf -y install \
 unzip \
 tar \
 git \
 swig \
 go \
 java-17-openjdk \
 java-17-openjdk-devel \
 ncurses-compat-libs \
 ninja-build \
 cmake \
 pv \
 gcc-c++

Debian >= 12

$ sudo apt -y install \
 git \
 build-essential \
 golang-go \
 default-jdk \
 cmake \
 swig \
 unzip

In addition, you MUST install the latest Go release from bookworm-backports OR use these instructions to install the latest Go compiler for Debian.

Key Store

Generate a key store for signing the Android application:

$ keytool \
 -genkey \
 -keystore ${HOME}/android.jks \
 -keyalg RSA \
 -keysize 4096 \
 -sigalg SHA256withRSA \
 -dname "CN=eduVPN for Android" \
 -validity 10000 \
 -alias eduVPN

Additional documentation here.

Setup

$ ./builder_setup.sh

Build

Git

To build the app from git, i.e. tag, branch or commit, use the following after modifying the file if necessary. Use this if you want to build a test or development release.

$ ./build_app_git.sh

You'll find the signed output APK in ${HOME}/Projects.

Tar

To build the app from tar, i.e. the archive that contains the full source code including all submodules, use the following after modifying the file if necessary. Use this if you want to use an official release.

$ ./build_app_tar.sh

You'll find the signed output APK in ${HOME}/Projects.

Testing

To run all tests, execute the following command:

$ ./gradlew :app:connectedBasicDebugAndroidTest