in idb/common/format.py [0:0]
def human_format_installed_app_info(app: InstalledAppInfo) -> str:
return " | ".join(
[
app.bundle_id,
app.name or "no bundle name available",
app.install_type or "no install type available",
", ".join(app.architectures or ["no archs available"]),
app_process_state_to_string(app.process_state),
"Debuggable" if app.debuggable else "Not Debuggable",
f"pid={app_process_id_based_on_state(app.process_id, app.process_state)}",
]
)