I've read a few discussions about launching your app from a link in an
email, but no one's confirmed it ever to work.

This is what my link would look like:
mycustomscheme://my.domain.name/alert?name=test

This is my manifest file:
<activity android:name=".SplashScreen">
  <intent-filter>
    <action android:name="android.intent.action.MAIN"></action>
    <category android:name="android.intent.category.LAUNCHER"></
category>
  </intent-filter>
  <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="mycustomscheme"
      android:host="my.domain.name"
      android:pathPrefix="alert"/>
  </intent-filter>
 </activity>

Please help, thanks.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" 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-developers?hl=en

Reply via email to