Browser releases symbian

I want to show browser control in my application for which I wrote the code

if (iBrCtlInterface == NULL)
{
    TRect rect(Position(), Size());
    iBrCtlInterface = CreateBrowserControlL( this, 
    rect, 
    TBrCtlDefs::ECapabilityDisplayScrollBar | TBrCtlDefs::ECapabilityLoadHttpFw,
    iCommandBase, 
    NULL, 
    NULL,
    NULL, 
    NULL,
    NULL);
}

_LIT(KUrl, "file://BrCtlSampleApp/sample1.htm");

iBrCtlInterface->LoadUrlL( KUrl );

which works fine on an E32 device, E63, but does not work on an N73 device.

I do not understand, since it is supported from the second fp3, which is not displayed on the device of the 3rd edition of N73

if anyone has the same problem plz let me know

I implemented this code from the SDK example BrCtlSampleApp, which also does not work on the N73 device

Thanks in advance.

+3
source share
1 answer

, URL- . / file: url, , :

_LIT(KUrl,"file:///\\BrCtlSampleApp\sample1.htm");

, URI, - :

_LIT(KUrl, "file:///C:\\BrCtrlSampleApp\\sample1.htm");

, , Application()->AppFullName(), , CAknAppUi (CxxxAppUi).

AppFullName() . URI , .

0

Source: https://habr.com/ru/post/1747500/


All Articles