uni_links icon indicating copy to clipboard operation
uni_links copied to clipboard

Android : Can't open app with deeplink in chrome.

Open ManhVu99 opened this issue 1 year ago • 6 comments

I have specific config deeplink in AndroidManifest like this

            <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="unilink"
                android:host="myhost.com"
                android:pathPrefix="/optional_path_prefix" />
            </intent-filter>

When i open url "unilink://myhost" in my web browser , my app not recognize url to open.

ManhVu99 avatar Jun 26 '23 04:06 ManhVu99

@ManhVu99 I am also facing similar issue. App is not getting opened in Android 13 but it is working below 12 version. Please share your solution if you resolved

rvharjinderbains avatar Sep 29 '23 07:09 rvharjinderbains

@ManhVu99 I am also facing similar issue. App is not getting opened in Android 13 but it is working below 12 version

Do you any solution?

Umer8627 avatar Dec 07 '23 19:12 Umer8627

any solution?

wepashka avatar Dec 09 '23 02:12 wepashka

or any alternative way to do that?

wepashka avatar Dec 09 '23 02:12 wepashka

Hi @wepashka @Umer8627 ,

I got the solution and it is working fine. As mentioned in official documentation, we need to verify the deep link . Here is the reference link :- https://developer.android.com/training/app-links/verify-android-applinks

rvharjinderbains avatar Dec 14 '23 07:12 rvharjinderbains

I have this problem too, but I was under the impression that we could use "Deep Links" (Not to be confused with "App Links") for Android and Custom URL's for IOS? I've looked all over the internet and it appears that if we want to click a link within an email to navigate to our app's we're actually forced to use "App Links" instead? Why does the Uni_Link documentation state we can use either at the beginning only for it not be true?

gjf7128 avatar Feb 14 '24 00:02 gjf7128