No description
Find a file
dependabot[bot] dabb61611b
build(deps): bump org.jetbrains.kotlin.plugin.serialization (#5)
Bumps [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin) from 2.1.0 to 2.1.10.
- [Release notes](https://github.com/JetBrains/kotlin/releases)
- [Changelog](https://github.com/JetBrains/kotlin/blob/v2.1.10/ChangeLog.md)
- [Commits](https://github.com/JetBrains/kotlin/compare/v2.1.0...v2.1.10)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlin.plugin.serialization
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Arthur K. <me@wzray.com>
2025-02-02 15:35:05 +03:00
.github init: first somewhat working version 2025-01-12 17:22:11 +03:00
app init: first somewhat working version 2025-01-12 17:22:11 +03:00
external init: first somewhat working version 2025-01-12 17:22:11 +03:00
gradle build(deps): bump org.jetbrains.kotlin.plugin.serialization (#5) 2025-02-02 15:35:05 +03:00
misc doc: add banner to readme.md 2025-01-22 11:38:12 +03:00
.gitignore init: first somewhat working version 2025-01-12 17:22:11 +03:00
.gitmodules init: first somewhat working version 2025-01-12 17:22:11 +03:00
build.gradle.kts init: first somewhat working version 2025-01-12 17:22:11 +03:00
gradle.properties init: first somewhat working version 2025-01-12 17:22:11 +03:00
gradlew init: first somewhat working version 2025-01-12 17:22:11 +03:00
LICENSE init: first somewhat working version 2025-01-12 17:22:11 +03:00
README.md doc: add banner to readme.md 2025-01-22 11:38:12 +03:00
settings.gradle.kts init: first somewhat working version 2025-01-12 17:22:11 +03:00

This version is still UNDER DEVELOPMENT. Check the official repository for the legacy (but working on latest Android) version.

Building

# 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