Deep Link Generator

Generate deep links and universal links for mobile apps.

myapp:///product?id=123
https://example.com/product?id=123
<intent-filter android:autoVerify="true">
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data
        android:scheme="https"
        android:host="example.com"
        android:pathPrefix="/product" />
</intent-filter>
Toolzora