Hi all,
I launch one app from another this way:
Tizen::App::AppControl* pAc = AppManager::FindAppControlN(L"id.appName",
L"http://tizen.org/appcontrol/operation/main");
if (pAc)
{
pAc->Start(null , null, &ExtraData, null);
delete pAc;
}
All right, but in requested app in OnAppControlRequestReceived I got truncated operationId : http://tizen.org/appcontrol/operation/ instead of
http://tizen.org/appcontrol/operation/main ... For any other operation is the same.
Message is printed this way:
AppLog("OnAppControlRequestReceived %S",operationId.GetPointer());
Is it normal behaviour ? Could you explain please?
p.s. Checked on 2.2.0 official.
Thank you.
Alexey.