01-12-2013 03:51 AM
01-12-2013 09:54 AM
01-13-2013 08:22 PM
Well I want to register to handle images, and I've tried adding the code to register as an InvokeTarget, but that's sorta where the trail goes dry...
How to test? How to hook into the native image gallery? I see both "Share" and "Edit" options in the Gallery, but my App never shows up in either.
Kinda lost, the new docs are pretty sketchy!
Any help would be amazing ![]()
01-14-2013 07:46 AM
01-14-2013 09:00 AM - edited 01-14-2013 09:01 AM
I tried a few different approaches, based on docs from various SDK's, looking at the file here's where I ended up:
<invoke-target id="ca.esdot.PicShop">
<invoke-target-type>application</invoke-target-typ
<filter>
<action>bb.action.VIEW</action>
<action>bb.action.OPEN</action>
<mime-type>image/png</mime-type>
<mime-type>image/jpeg</mime-type>
<property var="uris" value="file://,data://local"/>
</filter>
<filter>
<action>bb.action.VIEW</action>
<action>bb.action.OPEN</action>
<mime-type>*</mime-type>
<property var="uris" value="file://"/>
<property var="exts" value="jpg,png"/>
</filter>
</invoke-target>
01-14-2013 09:39 AM