removeCustomApp

Export, used to remove custom app.

Reference

---@param id string
function removeCustomApp(id) end

Usage example

server.lua
  local removed, errorMessage = exports.fd_laptop:removeCustomApp("testing_app")

  if not removed then
      print("Could not remove app:", errorMessage)
  end