No description
Find a file
dependabot[bot] cee514b763 build(deps): bump kotlin from 2.1.0 to 2.1.10
Bumps `kotlin` from 2.1.0 to 2.1.10.

Updates `org.jetbrains.kotlin.android` 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)

Updates `org.jetbrains.kotlin.plugin.compose` 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.android
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.jetbrains.kotlin.plugin.compose
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-02 15:33:52 +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 kotlin from 2.1.0 to 2.1.10 2025-02-02 15:33:52 +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