Hi
I want have two entry points for my App (or more), for example:
1. normal launch from idle
2. app is launched from another app
So in different cases I should show for user differnt UI.
I have found that most simple way is: LaunchApplication() with arguments but it is deprecated method.
I guess I should register IAppControlProviderEventListener interface using SetAppControlProviderEventListener and reimplement OnAppControlRequestReceived() to get launch argument and I should configure manifest too.
And I could launch my App from another App this way:
-AppManager::FindAppControlN(AppId,Operation);
-Tizen::App::AppControl::Start(..);
For implicit launch I could use:
-Tizen::App::AppControl::FindAndStart(..)
Am I right?
Is there another ways? Using notifications or something else.
Maybe I have missed something. Any useful examples etc.
Thank you in advance.
Alexey.