mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-06-30 21:58:55 -07:00
fbt: restored certain apps to PLUGIN type
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="bt_hid",
|
||||
name="Bluetooth Remote",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
entry_point="bt_hid_app",
|
||||
stack_size=1 * 1024,
|
||||
cdefines=["APP_BLE_HID"],
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="music_player",
|
||||
name="Music Player",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
entry_point="music_player_app",
|
||||
cdefines=["APP_MUSIC_PLAYER"],
|
||||
requires=[
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
App(
|
||||
appid="snake_game",
|
||||
name="Snake Game",
|
||||
apptype=FlipperAppType.EXTERNAL,
|
||||
apptype=FlipperAppType.PLUGIN,
|
||||
entry_point="snake_game_app",
|
||||
cdefines=["APP_SNAKE_GAME"],
|
||||
requires=["gui"],
|
||||
|
||||
+3
-2
@@ -73,8 +73,9 @@ FIRMWARE_APPS = {
|
||||
"system_apps",
|
||||
# Settings
|
||||
"settings_apps",
|
||||
# Plugins
|
||||
"basic_plugins",
|
||||
# Stock plugins - no longer built into fw, now they're .faps
|
||||
# Yet you can still build them as a part of fw
|
||||
# "basic_plugins",
|
||||
# Debug
|
||||
# "debug_apps",
|
||||
],
|
||||
|
||||
@@ -64,7 +64,7 @@ def build_app_as_external(env, appdef):
|
||||
|
||||
|
||||
apps_to_build_as_faps = [
|
||||
# FlipperAppType.PLUGIN,
|
||||
FlipperAppType.PLUGIN,
|
||||
FlipperAppType.EXTERNAL,
|
||||
]
|
||||
if appenv["DEBUG_TOOLS"]:
|
||||
|
||||
Reference in New Issue
Block a user