deep link not working on real device, flutter

554 Views Asked by At

I use uniLinks package and it's work on android virtual device. but not working on the real device and when I open link in browser, it's not come back to app.


 </intent-filter>

            <!-- App Links -->
            <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" />
                <!-- Accepts URIs that begin with https://YOUR_HOST -->
                <data
                    android:scheme="https"
                    android:host="payment.mlggrand.ir" />
            </intent-filter>
0

There are 0 best solutions below