언어 설정

Menu
Sites
Language
OnAppControlRequestReceived is not called

Hi,

My application is exporting AppControl functionality. When I try to open *.txt file from MyFiles, my application is launched.

Everything works fine. But, OnAppControlRequestReceived is not called. 

Can anyone help me to solve this problem?

I am testing on 2.2.1 SDK.

Thanks

 

Responses

4 댓글
Alex Ashirov

Hi,

Could you please provide AppControl section from your manifest.xml file?

Anna K

Here is the AppControl from manifest file

           <AppControls>

                <AppControl>

                    <MimeType>text/plain</MimeType>
                    <Operation>http://tizen.org/appcontrol/operation/view</Operation>
                </AppControl>
            </AppControls>

Alex Ashirov

Looks ok.

Do you register your application control provider listener?

AppControlProviderManager::GetInstance()->SetAppControlProviderEventListener(this);

Anna K

Thanks it works now.