Search code examples
bada

Emulator - how to add web browser and Samsung Apps?


I have just installed Bada emulator and it has only settings. Is there any how how to add there web browser and Samsung Apps icon portal. I would like to test some current apps on this emulator.

Thanks for reply

Hmyzak


Solution

  • As for the web browser, there's a trick you can do:
    Write an app which starts it. The code basically would be

    ArrayList* pDataList = null;
    pDataList = new ArrayList();
    pDataList->Construct();
    
    String* pData = null;
    pData = new String(L"http://www.someurl.com");
    pDataList->Add(*pData);
    AppControl* pAc = AppManager::FindAppControlN(APPCONTROL_BROWSER, "");
    pAc->Start(pDataList, null);
    

    That starts a browser in Emulator. I don't think that's possible for the AppStore.