-1

Can anybody please tell me how to launch android application from particular URL . If i am getting this URL From mail .

Please suggest me how i can open app on particular URL.

Mina Fawzy
  • 20,852
  • 17
  • 133
  • 156
Renu Singh
  • 111
  • 3
  • 10

1 Answers1

0

One option is to have a web site, and have an intent-filter for a particular URI on that web site. For example, this is what Market does to intercept URIs on its web site:

  <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" android:host="market.android.com"
            android:path="/search" />
    </intent-filter>
Patrizio
  • 145
  • 4