Questions tagged [android-universal-link]

6 questions
2
votes
2 answers

React Native Samsung Universal Link stopped to work after upgrading to Android 12

Using a Samsung S10e on Android 12, I was able in the past to open our React Native application (https://github.com/pass-culture/pass-culture-app-native) through Universal Links. We removed first all apps, all other browsers than chrome (such as…
1
vote
1 answer

Open deeplink with parameters on android

Following the intent format in https://developer.chrome.com/docs/multidevice/android/intents/ intent: HOST/URI-path #Intent; package=\[string\]; action=\[string\]; category=\[string\]; component=\[string\]; …
Ted
  • 22,696
  • 11
  • 95
  • 109
0
votes
0 answers

How to redirect user from outside app like browser to specific screen inside react native app

I'm trying to implement payment in my app and i need to redirect user from browser to specific screen in my app after payment. The problem is i'm able to do it with deeplinking This is the URL schème that i'm using: my_app_name://payment And…
0
votes
0 answers

Best way to minimize universal links

I have an app that has universal links configured for it. Now when you click at one of those links, it nicely opens within the app if you click from your phone. Now these links are becoming a bit too big to manage, and I want to use some type of url…
0
votes
0 answers

Negation on Android Universal Deep Links - Java - Latest Version

I'm trying to add a negation to a universal deep link on android in the manifest file. where for example I have this site for example: smth.com and I want to deep link anything under smth.com/..* and avoid deep linking on…
0
votes
0 answers

Why universal deep link doesn't work using tag?

I've a link like www.mydomain.com/myapp and it is able to deep link to my react native expo app correctly if opened from email or chat. My react app redirects that link to playstore/appstore in case it is opened in desktop. const MyAppRedirect = ():…