added CLI-GUI Bridge app & Text Viewer app

This commit is contained in:
jbohack
2023-01-11 09:57:54 -05:00
parent 4831ff4d0b
commit dd3ff8de78
21 changed files with 1549 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
App(
appid="text_viewer",
name="Text Viewer",
apptype=FlipperAppType.EXTERNAL,
entry_point="hex_viewer_app",
cdefines=["APP_TEXT_VIEWER"],
requires=[
"gui",
"dialogs",
],
stack_size=2 * 1024,
order=20,
fap_icon="icons/hex_10px.png",
fap_category="Misc",
fap_icon_assets="icons",
)