mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 08:22:16 +03:00
Yubico Authenticator for Desktop (Windows, macOS and Linux) and Android
.github | ||
android | ||
assets | ||
doc | ||
helper | ||
integration_test | ||
lib | ||
linux | ||
macos | ||
resources | ||
test | ||
windows | ||
.flake8 | ||
.gitignore | ||
.gitmodules | ||
.metadata | ||
analysis_options.yaml | ||
build-helper.bat | ||
build-helper.sh | ||
build.yaml | ||
create-dmg.sh | ||
l10n.yaml | ||
LICENSE | ||
pubspec.lock | ||
pubspec.yaml | ||
README.adoc | ||
set-version.py |
== 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 the Helper, as described in the next section. === Building the Yubico Authenticator Helper Requirements: Python >= 3.8 and Poetry. The GUI requires a compiled version of Helper to run, which is built from the sources in helper/ in this repository. This needs to be build prior to running `flutter build` or `flutter run`, by running `build-helper.sh` (or `build-helper.bat` on Windows). NOTE: You will need to re-run `ykman-helper.sh` if changes have been made to Helper'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].