Tidy up all applications data and resources paths

This commit is contained in:
Willy-JL
2023-07-01 02:31:37 +02:00
parent f918f746c4
commit 690d4eb661
81 changed files with 700 additions and 121 deletions

View File

@@ -0,0 +1,22 @@
App(
appid="nrf24sniff",
name="[NRF24] Sniffer",
apptype=FlipperAppType.EXTERNAL,
entry_point="nrfsniff_app",
requires=["gui"],
stack_size=2 * 1024,
order=60,
fap_icon="nrfsniff_10px.png",
fap_category="GPIO",
fap_author="@mothball187 & @xMasterX",
fap_version="1.0",
fap_description="App captures addresses to use with NRF24 Mouse Jacker app to perform mousejack attacks",
fap_private_libs=[
Lib(
name="nrf24",
sources=[
"nrf24.c",
],
),
],
)