Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
44 views

I'm working on deep link handling in an Expo Router (React Native) app. When I open a deep link like this: myapp://news/a81c95f9-a6ae-4f1a-8e95-f30b344bbc46 it contains a news ID at the end which I ...
Sanket's user avatar
  • 11
0 votes
0 answers
36 views

I have a webpage that is linked from a Facebook post my idea is to deeplink an amazon product through that page, make it opening in the Amazon app instead of Facebook in-app browser following this in ...
fabio.ivona's user avatar
0 votes
0 answers
104 views

I’m using Branch.io in a React Native (0.81.0) iOS app, and my deep links only work sometimes. Occasionally, branch.subscribe returns params correctly. Other times, it never fires at all — both cold ...
Kaushik Goswami's user avatar
0 votes
1 answer
49 views

I'm trying to handle iOS Universal Links in my SwiftUI app. Cold start: when I open the link from Safari or Notes and the app is closed — everything works fine. Hot start: when the app is already in ...
Aleksey Khokhrin's user avatar
0 votes
2 answers
84 views

We are using dynamic links (branch.io) in our app, they work correctly when the app is closed, but only work on API >=35 if the app is already open. onNewIntent() doesn't get called on lower APIs. ...
jack_the_beast's user avatar
0 votes
0 answers
45 views

I am now developing the React Native app with the WebView. I have some links from emails that can lead to my website. In that case I want to open my app that is installed and open the WebView with ...
Vladyslav Chapiuk's user avatar
0 votes
3 answers
125 views

I’m trying to handle multiple deep link paths that should open the same screen in my React Navigation setup. For example, both of these URLs should open the same ChallengesScreen: mydomain.com/...
Migalejo Lejo's user avatar
0 votes
0 answers
50 views

so I'm trying to implement the reset password feature by sending a reset password through Nodemailer where supposed that when the user clicks on the link it redirects him to the appropriate app screen ...
Souheil Kandi's user avatar
1 vote
1 answer
75 views

I'm building a .NET MAUI Android app and want to handle custom URL schemes so that when someone clicks a link (e.g., mycustomschema://auth/callback?token=123), the app launches or resumes. Here’s what ...
Sweta Aadatiya's user avatar
0 votes
0 answers
154 views

I am working on deep linking with universal links in a React Native iOS app. When I tap a universal link and the app is closed (cold start), it opens correctly and navigates as expected. But when ...
abdullah ahmad's user avatar
1 vote
0 answers
77 views

How does Branch.io successfully deep link from Chrome iOS when custom domains fail? I'm facing a frustrating issue with deep links on Chrome iOS that Branch.io somehow manages to solve perfectly, and ...
Raphael St's user avatar
0 votes
0 answers
116 views

Android Deep Linking with Play Store Fallback - Best Practice? I'm developing a React Native app using Expo and need to implement deep linking for Android with specific requirements. I want to ...
idoaviram10's user avatar
2 votes
1 answer
45 views

So I'm Making an app that connects with Fitbit data They use OAuth2 The domain I have is my github page. https://gitbritt.github.io/ Valid /.well-known/assetlinks.json Here's the call back url https://...
gitBritt's user avatar
2 votes
1 answer
95 views

so i'm trying to implement deep linking in my app. The problem that i'm having is that the android studio app links assistant keeps saying that one web check has failed. I have tried everything, ...
Limun's user avatar
  • 357
0 votes
1 answer
116 views

We have a use case where we need to pass deeplink data from the App Store → into the flutter app after installation. Our current approach is When the user opens a deeplink webpage, we copy the ...
Aman Kumar's user avatar
0 votes
0 answers
45 views

unfortunattely, my Deeplink doesnt work as expecting. When i scan my QR-Code(mardunfc://devfelix.de), it just opens a browser and is not redirecting to my Activity. My manifest looks the following: ...
DevFelix's user avatar
0 votes
1 answer
64 views

I integrated Branch.io to my iOS app, and add deep links to the associated domains, one device faces an issue where deep link always redirect user to safari even if the application is installed, I ...
Zeyad.Ahmed's user avatar
0 votes
0 answers
36 views

I'm developing an app in React Native and trying to open the X app programmatically by passing a search string with Linking.openURL. The behavior I'm seeing is the following: The X app opens ...
Paul's user avatar
  • 4,618
0 votes
0 answers
33 views

Whenever we compile our App in Xcode, it will first build and install. This is not what I wanted as: It gets the app started and launched. It doesn't deeplink. So if I want to debug a deeplink into ...
Elye's user avatar
  • 61.3k
1 vote
0 answers
78 views

I'm trying to implement navigating from a push notification to a screen via deeplinks and I made it work for some of my notifications. But navigating to my DetailScreen just doesnt want to work. I've ...
Ashman's user avatar
  • 127
1 vote
0 answers
46 views

I'm working on a Flutter app, and we're experiencing an issue where deep links (App Links on Android and Universal Links on iOS) are not opening the app as expected. When a user taps a link like https:...
Maxim Shapira's user avatar
-2 votes
1 answer
69 views

I'm having a application like social media like app and there are user profile i want the profiles to add a profile sharing option ,and when opened it should open specific user profile in app if app ...
Vignesh V Achar's user avatar
2 votes
1 answer
117 views

I'm having a hard time with the implementation of BitlySDK for iOS 18 for the POC (don't have published app yet, currently only on TestFlight). I have followed the documentation from Bitly (which ...
mother_chucker's user avatar
0 votes
1 answer
270 views

I was on [email protected] and [email protected] and my custom URL scheme and deep linking worked fine. But after upgrading to [email protected] and [email protected] (SDK 34) the custom URL ...
rolinger's user avatar
  • 3,196
0 votes
0 answers
73 views

I'm building deep linking support for a mobile app on both Android and iOS using. The links follow this structure: https://example.app.com/deeplink?screen=details&id=123 They are shared on social ...
luau's user avatar
  • 11
0 votes
0 answers
51 views

I have implemented deepLink on flutter with go_router package. Everything works fine on mobile app but when I try to open a link on the web using for example a QR code this does not work and I get ...
Alfredo Salvati's user avatar
2 votes
1 answer
172 views

I'm building a Flutter app using GetX for navigation and the app_links package for deep linking. The deep links work perfectly on Android, but on iOS, the same screen is pushed twice when opening a ...
Amit Singh's user avatar
0 votes
1 answer
117 views

I've added push notifications using Firebase Cloud Messaging (FCM) and deep linking using the app_links package in my Flutter app. Notifications work fine when the app is in the foreground or ...
Amit Singh's user avatar
0 votes
2 answers
125 views

So I have a backend which serves both a website for browser clients and also mobile app clients. The mobile app implements universal iOS links. As there were some issues with the testing website, I ...
DevelJoe's user avatar
  • 1,552
0 votes
1 answer
89 views

Reference image [ERROR:flutter/shell/platform/darwin/ios/framework/Source/FlutterViewController.mm(1871)] Timeout waiting for the first frame when launching an URL. <key>FLTTimeoutConfiguration&...
Shabbir Hussain's user avatar
0 votes
1 answer
211 views

I’m currently working on an iOS app using Swift and looking to implement referral deep linking functionality. I’ve searched around but I’m still a bit unclear on the overall approach, especially when ...
Ryan's user avatar
  • 1
0 votes
1 answer
44 views

did anyone tried to exclude specific subdomains from urls opened by default in the app on Android? Our company has a url routing with lots of subdomains, and we need to navigate most of them to the ...
Kodola Andrii's user avatar
1 vote
0 answers
32 views

I'm developing an application that needs to direct users to specific timestamps within podcast episodes on Spotify. For example, I want a button in my app that when pressed, opens the Spotify app and ...
Petar Pan's user avatar
0 votes
1 answer
62 views

I've developed a Flutter app that runs on both Android and iOS. I’m currently using standard navigation with the Navigator class (no named routes, just the classic Navigator.push(...) style). Now, I ...
Srisudhan's user avatar
0 votes
0 answers
76 views

When user clicks on Deeplink if App is not installed it redirects to playstore or Appstore and if its installed it should redirects to app not playstore or appstore in iOS its working as expected but ...
Tanu Purohit's user avatar
0 votes
1 answer
89 views

I am trying the deep links in flutter and in Android it worked perfect as i wanted but in iOS i am trying from too many days but not working as i wanted I want when app opens via link then fetch ref ...
Tanu Purohit's user avatar
0 votes
0 answers
91 views

I am currently implementing deeplinks to navigate to specific Instagram pages from an Android app. However, despite searching through official documentation and across the internet, I cannot find ...
河田昂's user avatar
0 votes
0 answers
20 views

Custom Deeplink Not Working from Google Play Store Event We've set up a custom deeplink in the Google Play Console for a recent event. It used to work in a previous release, but in the current version ...
pan's user avatar
  • 1
0 votes
0 answers
158 views

I'm using Expo SDK 52 with a React Native app. I want to integrate Branch.io for deep linking. It works fine on Android. However, on iOS, the app crashes immediately on launch if @config-plugins/react-...
Rafi Banana's user avatar
0 votes
1 answer
106 views

On handling notification about new message in chat and when app is terminated i need to build multiple screens with "Chat" page on top of the stack. For that I need to build "Home" ...
2 votes
1 answer
425 views

I'm building a React Native application and using the Linking API to handle deep linking. Expected Behaviour When the app is running (either in the foreground or background), I expect the listener ...
Zukuan JING's user avatar
-2 votes
1 answer
169 views

I’ve implemented Universal Linking in my iOS app (hosted the AASA file, added Associated Domains, etc.), and everything is working as expected. When I tap the deep link URL from apps like Outlook, ...
Shwe Nik's user avatar
0 votes
2 answers
326 views

I have been trying to open the device's native camera application but have been unable to do so with this function. I was able to open the camera app in Expo Go, but when I create a development build ...
Vaibhav Srivastava's user avatar
0 votes
0 answers
178 views

I am trying to implement share functionality in my application. Basically I have a Flatlist which renders items and each item has a share button , Now whenever user clicks on share , I want to share ...
KAPIL BADOKAR's user avatar
0 votes
0 answers
32 views

For some reason even though my payload sends the "data" in the correct place and format, as soon as it gets to xcode, it get "stripped" and moved to the top level, so any click ...
karel lahmy's user avatar
1 vote
1 answer
80 views

I am trying to apply developpers doc Create a deep link for a destination I have two apps : appA and appB, and I want appB to open a specific Fragment of appA, on button click. AppA has a MainActivity ...
Simon W's user avatar
  • 101
0 votes
0 answers
64 views

I have implemented Github Action with Fastlane to build iOS flutter app. Deeplink navigation is not working when I build using Github action and it is working if I build manually using my macbook ...
Venkat Pandi's user avatar
0 votes
0 answers
309 views

I created a deep link for my Flutter app using AppLink. The link works when clicked from apps like WhatsApp or Messages, launching the app directly. However, when I type the link into a browser and ...
Karthik Balaji S's user avatar
1 vote
0 answers
137 views

I'm working on implementing deferred deep linking in my Flutter app without relying on third-party services like Firebase or Branch. So far, I've used the app_link package and set up the necessary ...
Taniksha Sharma's user avatar
0 votes
0 answers
109 views

Since I upgraded expo from 49 to 51 my universal links dont work when app is in background. I dont use expo-router but still react navigation. I dont think there is anything wrong with my app.json ...
learningcoding's user avatar

1
2 3 4 5
74