mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 00:12:09 +03:00
Yubico Authenticator for Desktop (Windows, macOS and Linux) and Android
.github/workflows | ||
android | ||
assets/product-images | ||
doc | ||
lib | ||
linux | ||
macos | ||
test | ||
windows | ||
ykman-rpc | ||
.gitignore | ||
.gitmodules | ||
.metadata | ||
analysis_options.yaml | ||
android.yaml | ||
build-ykman.bat | ||
build-ykman.sh | ||
build.yaml | ||
pubspec.lock | ||
pubspec.yaml | ||
README.adoc |
== Yubico Authenticator for Desktop === Requirements You will need the Flutter SDK with enabled desktop support, see: https://flutter.dev/desktop Development has been done using the "Install from git" method of installing the SDK, from the "beta" channel. You will also need to provide a compiled version of ykman-rpc, as described in the next section. === Building ykman-rpc Requirements: Python >= 3.8 and Poetry. The GUI requires a compiled version of ykman-rpc to run, which is built from the sources in ykman-rpc/ in this repository. This needs to be build prior to running `flutter build` or `flutter run`, by running `build-ykman.sh` (or `build-ykman.bat` on Windows). NOTE: You will need to re-run `ykman-build.sh` if changes have been made to ykman-rpc's code, or if `flutter clean` has been run. === Running the app To start the app, run: flutter run -d <os> where <os> is "windows", "macos", or "linux". You can add the `--release` flag to run a release build instead of debug. Builds of the app will be create under `build/<os>/`. === Running tests Tests can be run with the command: flutter test === Packaging for MacOS See link:doc/MacOS_Packaging.adoc[MacOS Packaging].