mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-07 05:29:09 -07:00
22 lines
623 B
Plaintext
22 lines
623 B
Plaintext
App(
|
|
appid="magspoof",
|
|
name="MagSpoof",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="mag_app",
|
|
requires=[
|
|
"gui",
|
|
"storage",
|
|
"notification",
|
|
"dialogs",
|
|
],
|
|
stack_size=6 * 1024,
|
|
order=64, # keep it at the bottom of the list while still WIP
|
|
fap_icon="icons/mag_10px.png",
|
|
fap_category="GPIO",
|
|
fap_icon_assets="icons",
|
|
fap_version=(0, 5), # major, minor
|
|
fap_description="WIP MagSpoof port using the RFID subsystem",
|
|
fap_author="Zachary Weiss",
|
|
fap_weburl="https://github.com/hummusec/magspoof_flipper", # Original by zacharyweiss
|
|
)
|