Yubico Authenticator for Desktop (Windows, macOS and Linux) and Android
Go to file
2022-11-10 11:48:39 +01:00
.github macOS release fixes 2022-11-10 11:48:39 +01:00
android relax Portrait requirement 2022-11-08 17:41:53 +01:00
assets Use correct green for no-key 2022-11-09 11:19:54 +01:00
doc Update documentation for Helper. 2022-05-09 12:48:08 +02:00
helper bump dev version to 6.0.1-dev.1 2022-11-09 13:43:46 +01:00
integration_test remove Android Beta dialog 2022-10-07 16:29:43 +02:00
lib bump dev version to 6.0.1-dev.1 2022-11-09 13:43:46 +01:00
linux review fixes 2022-10-07 10:18:32 +02:00
macos Set MacOS app category. 2022-11-09 12:13:44 +01:00
resources bump dev version to 6.0.1-dev.1 2022-11-09 13:43:46 +01:00
test license notice update in source files 2022-10-04 12:12:54 +02:00
windows Migrate to Flutter 3.3.2 2022-09-23 10:42:29 +02:00
.flake8 Update ykman-rpc and fix set_mode. 2022-05-06 15:40:51 +02:00
.gitignore Remove executable permission from files. 2021-11-19 09:19:16 +01:00
.gitmodules Update ykman and replace submodule with pyproject config. 2022-02-21 10:47:33 +01:00
.metadata Update Flutter dependencies and use new versioning for Runner.rc. 2022-08-31 09:13:35 +02:00
analysis_options.yaml Enable use_super_parameters lint rule. 2022-05-12 12:05:18 +02:00
build-helper.bat manually add zxingcpp license information 2022-10-25 16:08:52 +02:00
build-helper.sh manually add zxingcpp license information 2022-10-25 16:08:52 +02:00
build.yaml Add start of navigation structure. 2021-11-22 14:00:23 +01:00
create-dmg.sh macOS release fixes 2022-11-10 11:48:39 +01:00
l10n.yaml Localization: first steps 2022-07-27 12:00:31 +02:00
LICENSE add Apache 2.0 license 2022-10-04 13:15:09 +02:00
pubspec.lock bump deps 2022-11-01 17:07:28 +01:00
pubspec.yaml bump dev version to 6.0.1-dev.1 2022-11-09 13:43:46 +01:00
README.adoc Update documentation for Helper. 2022-05-09 12:48:08 +02:00
set-version.py license notice update in source files 2022-10-04 12:12:54 +02:00

== 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].