1
0
Fork 0

init: first somewhat working version

This commit is contained in:
Arthur K. 2025-01-12 17:12:34 +03:00
commit fcf72cf9a5
Signed by: wzray
GPG key ID: B97F30FDC4636357
81 changed files with 3259 additions and 0 deletions

20
README.md Normal file
View file

@ -0,0 +1,20 @@
# OpenConnect for Android
This version is still **UNDER DEVELOPMENT**. Check [the official repository](https://gitlab.com/openconnect/ics-openconnect) for the legacy (but working on latest Android) version.
## Building
```sh
# clone the repo with submodules
git clone --recurse-submodules https://github.com/wzrayyy/openconnect-android
cd openconnect-android
# make external dependencies (curl and openconnect)
make -C external
# build apk
./gradlew assembleDebug
# copy the apk to the current folder
find -name '*.apk' | head -1 | xargs -I{} cp {} OpenConnect.apk
# install
adb install OpenConnect.apk
```