Peli, how do you trigger the View intent from OIUpdate. I just
> Hm, this actually looks quite good. Next thing is to try with the
> browser itself.
> Since I currently only have the emulator, I have to wait until the apk
> is available :-)
> Peli
> On 19 Jan., 03:14, kolbysoft <kolbys...@gmail.com> wrote:
> > Peli,
> > sorry, I was out all weekend, hence the late reply,
> > here is the intent list from the manifest:
> > <intent-filter>
> > <action android:name="android.intent.action.VIEW" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > <category
> > android:name="android.intent.category.BROWSABLE" />
> > <data android:scheme="http" />
> > <data android:scheme="https" />
> > <data android:scheme="about" />
> > </intent-filter>
> > <!-- For these schemes where any of these particular MIME
> > types
> > have been supplied, we are a good candidate. -->
> > <intent-filter>
> > <action android:name="android.intent.action.VIEW" />
> > <category
> > android:name="android.intent.category.BROWSABLE" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > <data android:scheme="http" />
> > <data android:scheme="https" />
> > <data android:mimeType="text/html"/>
> > <data android:mimeType="text/plain"/>
> > <data android:mimeType="application/xhtml+xml"/>
> > <data android:mimeType="application/vnd.wap.xhtml+xml"/
> > </intent-filter>
> > <!-- We are also the main entry point of the browser. -->
> > <intent-filter>
> > <action android:name="android.intent.action.MAIN" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > <category
> > android:name="android.intent.category.LAUNCHER" />
> > <category
> > android:name="android.intent.category.BROWSABLE" />
> > </intent-filter>
> > <intent-filter>
> > <action
> > android:name="android.intent.action.WEB_SEARCH" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > <category
> > android:name="android.intent.category.BROWSABLE" />
> > <data android:scheme="" />
> > <data android:scheme="http" />
> > <data android:scheme="https" />
> > </intent-filter>
> > <intent-filter>
> > <action
> > android:name="android.intent.action.WEB_SEARCH" />
> > <action
> > android:name="android.intent.action.MEDIA_SEARCH" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > </intent-filter>
> > <intent-filter>
> > <action android:name="android.intent.action.SEARCH" />
> > <category
> > android:name="android.intent.category.DEFAULT" />
> > </intent-filter>
> > I also checked against the manifest form the default browser and don't
> > think i'm missing something. Not sure why it doesn't open the dialog.
> > Michael
> > On Jan 18, 3:25 pm, Peli <peli0...@googlemail.com> wrote:
> > > If you could post the apk file of Steel and copy and paste the section
> > > containing the intent filter from your Manifest file with the VIEW
> > > intent this would be great! Then we could further analyze what goes
> > > wrong.
> > > Peliwww.openintents.org
> > > On 18 Jan., 19:04, taa1 <starman...@gmail.com> wrote:
> > > > I posted this problem at the OI Update forum as I thought it was
> > > > specific to their app.
> > > > Short version: The OI Update developer thinks the problem is because
> > > > Steel doesn't know what to do with the VIEW action/intent (I don't
> > > > know if I'm using the right terminology) they are using.
> > > > Long version:http://www.openintents.org/en/node/201
> > > > Is there something I need to change in the Steel settings?