unleashed-firmware/applications/external/mifare_nested/application.fam
MX a11b6e72dc
Update changelog and readme
+ some small fixes
2023-05-28 03:53:54 +03:00

25 lines
612 B
Text

App(
appid="mifare_nested",
name="Mifare Nested",
apptype=FlipperAppType.EXTERNAL,
entry_point="mifare_nested_app",
requires=[
"storage",
"gui",
"nfc"
],
stack_size=4 * 1024,
order=30,
fap_icon="assets/icon.png",
fap_category="NFC",
fap_private_libs=[
Lib(name="nested"),
Lib(name="parity"),
Lib(name="crypto1")
],
fap_icon_assets="assets",
fap_author="AloneLiberty",
fap_description="Recover Mifare Classic keys",
fap_weburl="https://github.com/AloneLiberty/FlipperNested",
fap_version=(1, 4)
)