Using pathPrefix

suggest change

AndroidManifest.xml:

<activity android:name="com.example.MainActivity" >

    <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="www.example.com"
              android:path="/item" />
    
    </intent-filter>

</activity>

This will launch your MainActivity when the user clicks any link starting with http://www.example.com/item, such as:

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents