Is there any solution to test firebase dynamic links, to redirect to TestFlight for uninstalled apps?
Asked
Active
Viewed 338 times
2 Answers
0
I find solution, no need to go to TestFlight, maybe will help someone!
- Open the deep link and go to the App Store
- Download the app Don't open downloaded app from App Store, but replace it from Xcode. Go to Xcode, Edit schema, under the ‘Run’ section, click on the ‘Info’ tab. There’s a button that says ‘wait for the executable to be launched’. Click it instead of ‘automatically’ option.
- Run app in device, and lunch by clicking app.

pajtimid
- 518
- 1
- 4
- 13
0
What I do to test deeplinks with debug instances is:
- Uninstall all app instances before opening a deeplink
- Open the deeplink and proceed to AppStore/PlayStore but WITHOUT INSTALLING THE APP
- Install the app from the desired source (TestFlight, Xcode, Android Studio...)
- The app will handle the dynamic link once installed
This is possible because, according to Firebase's Operating System Integrations, when you tap on a deeplink Firebase is notified of your request, but it will return you the trigger until your app is opened and handles it, no matter the installation source of the app.