I'm using
<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="myApp" />
</intent-filter>
to launch myApp when a user click on a myapp://bla url, this is working fine in Android but not when I port my app to BlackBerry (everything else seems to be working fine).
Any advice?