Multi-protocol version, based on openconnect v8.03.
APK: OpenConnect_1.11+multi.apk XDA thread: comment
This is a VPN client for Android, based on the Linux build of OpenConnect.
Much of the Java code was derived from OpenVPN for Android by Arne Schwabe.
OpenConnect for Android is released under the GPLv2 license. For more information see the COPYING and doc/LICENSE.txt files.
Changelog: see doc/CHANGES.txt
To help out with translations, please visit this project's page on Transifex.
Official releases are posted in the XDA thread and on Google Play.
Binary APK files are also available at F-Droid.
No registration is required to download from XDA or F-Droid.
On the host side you'll need to install:
Building OpenConnect from source requires compiling several .jar files and native binaries from external packages. These commands will build the binary components and copy them into the appropriate library and asset directories:
git clone https://github.com/cernekee/ics-openconnect
cd ics-openconnect
git submodule init
git submodule update
make -C external
This procedure only runs on a Linux PC. If you are unable to build from source, you can try fetching the cached artifacts from a recent CI build:
./misc/download-artifacts.sh
After the binary components are built, this compiles the Java sources into an APK file:
cd ics-openconnect
./gradlew assembleDebug
To install the APK on a device:
adb install -r app/build/outputs/apk/debug/app-debug.apk
Logs of successful (and not-so-successful) builds can be found on this project's Travis CI page.