b9ccb274a7
* ufbt: removed warning in "channel=dev" update mode * ufbt: removed API version warning; added get_blackmagic & get_apiversion targets * ufbt: updater project template to include blackmagic & jlink targets * ufbt: project template: fixes & updates * ufbt: project template: added config update shortcut * sdk: using fixed names for file components
18 lines
624 B
Plaintext
18 lines
624 B
Plaintext
# For details & more options, see documentation/AppManifests.md in firmware repo
|
|
|
|
App(
|
|
appid="@FBT_APPID@", # Must be unique
|
|
name="App @FBT_APPID@", # Displayed in menus
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="@FBT_APPID@_app",
|
|
stack_size=2 * 1024,
|
|
fap_category="Examples",
|
|
# Optional values
|
|
# fap_version=(0, 1), # (major, minor)
|
|
fap_icon="@FBT_APPID@.png", # 10x10 1-bit PNG
|
|
# fap_description="A simple app",
|
|
# fap_author="J. Doe",
|
|
# fap_weburl="https://github.com/user/@FBT_APPID@",
|
|
fap_icon_assets="images", # Image assets to compile for this application
|
|
)
|