I use this example to open tizen web browser
HashMap extraData; extraData.Construct(); String urlKey = L"url"; String urlVal = L"http://www.tizen.org"; extraData.Add(&urlKey, &urlVal); AppControl* pAc = AppManager::FindAppControlN(L"tizen.internet", L"http://www.tizen.org/about"); if (pAc) { pAc->Start(null, null, &extraData, null); delete pAc; }
But my emulator only open web browser and not doing anything with it (like you see in my image)
I added
<Privilege>http://tizen.org/privilege/application.launch</Privilege>
How can i make web browser open a webpage from my app :(