I am having problem with my legato sandbox application not able to access the files which are placed under /legato/systems/current/appsWriteable/testSW/bin . This is the same location where legato sandbox application resides. If I set the sandbox as false in my adef file, I am able to access the file.
here is my adef file.
sandboxed: true
start: auto
version: 2.0
bundles:
{
file:
{
testSW/bin/
}
}
// Tell the Supervisor to start this program when the application is started.
processes:
{
run:
{
( testSW)
}
}
requires:
{
file:
{
// I need access to /proc for debugging.
“/data/testSW.cert.pem” /bin/
“/data/testSW.private.key” /bin/
“/data/testSW.public.key” /bin/
}
}