mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-18 16:53:45 +00:00
d5403a089c
* Add Mfkey32 application * Fine tune RAM requirements, use FZ notification service API * Fix PVS security warnings, fix issue with cracking keys on the FZ * Prefer on-device or Flipper mobile app (seamless) * Mfkey32: change app category to NFC * Mfkey32: set target to f7 only * Silence PVS false positives * Correct PVS codes Co-authored-by: あく <alleteam@gmail.com>
17 lines
382 B
Text
17 lines
382 B
Text
App(
|
|
appid="mfkey32",
|
|
name="Mfkey32",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
targets=["f7"],
|
|
entry_point="mfkey32_main",
|
|
requires=[
|
|
"gui",
|
|
"storage",
|
|
],
|
|
stack_size=1 * 1024,
|
|
fap_icon="mfkey.png",
|
|
fap_category="Nfc",
|
|
fap_author="noproto",
|
|
fap_icon_assets="images",
|
|
fap_weburl="https://github.com/noproto/FlipperMfkey",
|
|
)
|