I have a application which use "included_applications"
It works fine, but if I use rebar(2.6) to generate release, It shows error message
"Module application_starter potentially included by two different applications: kernel and xxx.",
Can anyone tell me how to do, Thank you
below is main application
{application, top,
[{description, ""},
{vsn, "1"},
{modules, []},
{registered, []},
{included_applications, [bsc]},
{start_phases, [{init,[]}, {go,[]}]},
{applications, [kernel, stdlib, sasl]},
{mod, {application_starter,[top_app,[]]}}
]}.
below is included application
{application, bsc,
[{description, ""},
{vsn, "1"},
{modules, []},
{registered, []},
{start_phases, [{go,[]}]},
{applications, [kernel, stdlib, sasl]},
{mod, {bsc_app,[]}}
]}.