Hi,
I added the included app like this
{included_applications, [the_app]},
in the primary applications .app file.
When I build a release with rebar under r15 the boot script does _NOT_ start the included app, as hoped and expected. However, the exact same code and config on r14 results in this line appearing in the boost script
{apply,{application,start_boot,[the_app,permanent]}},
Which means the app is started on boot, and my subsequent call to start the top level supervisor of the included app fails with `already_started`.
What is the correct way to include an app so that it is loaded, but not started, in r14, so that I may have my primary app call the top level supervisor of the included application, please?
Cheers
Russell