Package as legato app

Hello,

I have legato app and I would like to package as .app and it should not have binary within it.

The binary will be placed in another partition. How can I achieve this ? Below is adef content.

sandboxed: false
executables:
{
example = ( exampleComponent )
}

processes:
{
envVars:
{
LE_LOG_LEVEL = DEBUG
}
run:
{
(/mnt/app/bin/example)
}
faultAction: stopApp
}

start: auto

bindings:
{
example.exampleComponent.appCtrl → .le_appCtrl
example.exampleComponent.ecallSrv → .le_mcc
example.exampleComponent.audioSrv → .le_audio
}

What do you mean by .app package?

What is the problem with the binary inside the file?

Do you mean you want to call some function in another application?

If yes, you can use IPC communication.