mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 08:43:10 +00:00
32 lines
828 B
Text
32 lines
828 B
Text
App(
|
|
appid="totp",
|
|
name="Authenticator",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="totp_app",
|
|
requires=["gui", "cli", "dialogs", "storage", "input", "notification", "bt"],
|
|
stack_size=2 * 1024,
|
|
order=20,
|
|
fap_author="Alexander Kopachov (@akopachov)",
|
|
fap_description="Software-based TOTP authenticator for Flipper Zero device",
|
|
fap_weburl="https://github.com/akopachov/flipper-zero_authenticator",
|
|
fap_category="Tools",
|
|
fap_icon_assets="images",
|
|
fap_icon="totp_10px.png",
|
|
fap_private_libs=[
|
|
Lib(
|
|
name="base32",
|
|
),
|
|
Lib(
|
|
name="base64",
|
|
),
|
|
Lib(
|
|
name="timezone_utils",
|
|
),
|
|
Lib(
|
|
name="polyfills",
|
|
),
|
|
Lib(
|
|
name="roll_value",
|
|
),
|
|
],
|
|
)
|