firebase-dynamic-links

Upon clicking Firebase dynamic link - DynamicLinks.dynamicLinks().handleUniversalLink returns false

為{幸葍}努か 提交于 2020-08-09 05:48:10
问题 I am using Firebase dynamic links and I have few links that I have created in the firebase console. Here is example short link that I copy pasted to an email and clicking: https://app.xxx.com/deeplink/xyz When we click on the link provided, the following function gets called: func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { } I have tried capturing the dynamic link with following

How to redirect to a certain screen when opening a dynamic link?

一个人想着一个人 提交于 2020-08-08 06:34:26
问题 I'm developing an app that can receive Firebase's Dynamic Link. What I want is when a user click a Dynamic Link, the app redirects it to a certain UIViewController . So I have a code that looks like this on my AppDelegate.swift file: @available(iOS 9.0, *) func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any]) -> Bool { //return GIDSignIn.sharedInstance().handle(url) return application(app, open: url, sourceApplication: options[UIApplication

Android: How to remove the reference to a firebase dynamic link after receiving it? [duplicate]

寵の児 提交于 2020-08-08 03:39:07
问题 This question already has answers here : Firebase dynamic link, clear it after using once (3 answers) Closed 8 days ago . In my app, I receive dynamic links within my main activity. This works great when a user opens a link and it launches the app and completes the correct actions, but the dynamic links seems to be staying around after it's been retrieved in the app. Even after the user has pressed the link and it's retrived in the app with FirebaseDynamicLinks.getInstance().getDynamicLink

How to make my firebase dynamic link redirect to my website on desktop and to my instant app on mobile

橙三吉。 提交于 2020-07-19 04:12:49
问题 I have an instant app and a Firebase dynamic link which redirects to this instant app. But when I click the dynamic link on a computer, the link leads to a non existant page of my website. According to Google doc : https://firebase.google.com/docs/dynamic-links/android/create When users open a Dynamic Link on a desktop web browser, they will load this URL (unless the ofl parameter is specified). If you don't have a web equivalent to the linked content, the URL doesn't need to point to a valid

Firebase dynamic links with custom domain

时光毁灭记忆、已成空白 提交于 2020-06-27 19:32:11
问题 I had integrated Firebase Dynamic links in multiple iOS apps, which is in the same firebase project and it was working fine. But when I installed both apps on same device, the dynamic links were not opening specific app on the device. So, I registered a custom subdomain with firebase with a custom apple-app-site-association in the root directory. But still I am having the same issue. I want to generate short dynamic link like https://apps.mybrand.co.id/partner/xXXx Files in public folder

Firebase Dynamic Link doesn't redirect to the app when open through Safari

旧街凉风 提交于 2020-06-27 08:40:46
问题 I have added Firebase Dynamic Link in my app, when I open in iPhone link through Google Chrome , it redirects me to the app, but when I'm trying to open app through Safari (I'm opening links through the Notes, not directly from the Safari), it doesn't open the app. I'm testing on real device, not in simulator. I have followed official Firebase Dynamic Links Tutorial. What can be wrong and how is possible to fix that? 回答1: My problem was that in Xcode in Capabilities Tab in Associated Domains,

Dynamic link object has no url

旧时模样 提交于 2020-06-23 04:34:27
问题 I created the DynamicLink for my firebase project when I am trying to receive the link I am getting "That's weird. My dynamic link object has no url". func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool { if let incomingURL = userActivity.webpageURL{ print("Incoming URL is \(incomingURL)") let linkHandled = DynamicLinks.dynamicLinks().handleUniversalLink(incomingURL) {(dynamicLink,

Firebase Dynamic-Links is not working for different target in same project in iOS

ⅰ亾dé卋堺 提交于 2020-06-22 19:01:47
问题 Is the behaviour of Firebase Dynamic-Links is different for Android and iOS? How can I implement Firebase Dynamic-Links for the same project for a different target in iOS? In Android, Firebase Dynamic-Links is working properly for different flavours, but in iOS Firebase Dynamic-Links is not working for different targets. For iOS, what do I have to implement for Firebase Dynamic-Links with Firebase for the same project with different targets? What is the actual reason for the difference in

Firebase Dynamic-Links is not working for different target in same project in iOS

自闭症网瘾萝莉.ら 提交于 2020-06-22 19:00:47
问题 Is the behaviour of Firebase Dynamic-Links is different for Android and iOS? How can I implement Firebase Dynamic-Links for the same project for a different target in iOS? In Android, Firebase Dynamic-Links is working properly for different flavours, but in iOS Firebase Dynamic-Links is not working for different targets. For iOS, what do I have to implement for Firebase Dynamic-Links with Firebase for the same project with different targets? What is the actual reason for the difference in

Firebase unable to edit dynamic link behavior for android app from console

不想你离开。 提交于 2020-06-01 05:14:10
问题 When editing dynamic links in my Android Firebase app I try to define the link behavior for Android by choosing "Open the deep link in your Android app", followed by pressing Next "if your app is not installed, send the user to" Firebase will not save a change from 'Google Play page for your app" to "Custom URL or Google Play Instant Experience". It "edits" successfully, and then is back to the previous setting when I check it. 来源: https://stackoverflow.com/questions/62029462/firebase-unable