Hey I want my website url to open my android when the user open this url in the browser What i did is
       <intent-filter>
            <data android:host="www.example.com" />
            <data android:scheme="https" />
            <action android:name="android.intent.action.VIEW"/>
            <category android:name="android.intent.category.BROWSABLE"/>
            <category android:name="android.intent.category.DEFAULT"/>
        </intent-filter>
and my webiste url is www.example.com
but it doesn't work any way on how to achieve this Thanks