Hello, I'm using Eclipse and the emulator. I've created an app with the following Intent:
<manifest ...> <application...> <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="myscheme" android:host="com.mycompany.myapp" /> </intent-filter> ... </application> <uses-permission android:name="android.permission.INTERNET"></uses- permission> </manifest> When opening the browser (within the emulator) and entering myscheme://com.mycompany.myapp as the URL, I'm expecting my app to launch, but it is not. Any tips? Chris @ Vertifi Software Is this not supported within emulator, or am I missing -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

