Languages

Menu
Sites
Language
Appcontrol: exporting share

Hi,

I would like to integrate my App into Tizen "share" functionality for images.
I read through the API doc, implemented the IAppControlProviderEventListener in my App, and added the following into my manifest:
 

<AppControls>
    <AppControl>
        <Operation>http://tizen.org/appcontrol/operation/share</Operation>
        <MimeType>image/*</MimeType>
    </AppControl>
    <AppControl>
        <Operation>http://tizen.org/appcontrol/operation/multi_share</Operation>
        <MimeType>image/*</MimeType>
    </AppControl>
</AppControls>

However, I cannot see my App among the Tizen share possibilities in Gallery, only Email + Message:

I tried w/o the MimeType filter as well, but same (no) result.

How can I integrate my App for share into Tizen?

thanks

Edited by: Zoltan Puski on 05 Oct, 2013

Responses

5 Replies
Lukasz Grabiec

It will not work.

Check source code of Audio Player or File Manager. This share list (Message, E-mail) is harcoded - it is not the

result of any "service enumeration".

Even in Symbian it was possible to register application as "Send as" target.

Shame on Tizen...

 

Luke

Zoltan Puski

That's sad :(
Thanks

Zoltan Puski

I tried with 2.2.1, and the same issue:
regardless I export the "http://tizen.org/appcontrol/operation/share" AppControl Functionality for "image/*" , my App does NOT appear in the list of share in Gallery.

Is there any plan that list will be populated dynamically, or it will remain hardcoded in Tizen?

Marco Buettner

In systemapps it looks like a hardcoded solution... You can only hope, that other developer use dynamic Enum and your should also may available your "api" to the public.

Zoltan Puski

I think I should log this as an issue..