Receive Dynamic Links on iOS
To receive the Firebase Dynamic Links that you created, you must include the Dynamic Links SDK in your app and call the
handleUniversalLink:
and dynamicLinkFromCustomSchemeURL:
methods when your app loads to get the data passed in the Dynamic Link.Prerequisites
Firebase Dynamic Links requires iOS 8 or newer. You can target iOS 7 in your app, but all Firebase Dynamic Links SDK calls will be no-ops if the app isn't running on iOS 8 or newer.
Set up Firebase and the Dynamic Links SDK
- Add Firebase to your iOS project. Include the following pod in your
Podfile
: - Run
pod install
and open the created.xcworkspace
file. - In the Firebase console, open the Dynamic Links section. Accept the terms of service if you are prompted to do so.
- Ensure that your app's App Store ID and your App ID prefix is specified in your app's settings. To view and edit your app's settings, go to your Firebase project's Settings page and select your iOS app.You can confirm that your Firebase project is properly configured to use Dynamic Links in your iOS app by opening the following URL:If your app is connected, the
apple-app-site-association
file contains a reference to your app's App ID prefix and bundle ID. For example:If thedetails
field is empty, double-check that you specified your App ID prefix. Note that your App ID prefix may not be the same as your Team ID.
Open Dynamic Links in your app
- In the Info tab of your app's Xcode project, create a new URL type to be used for Dynamic Links. Set theIdentifier field to a unique value and the URL scheme field to be your bundle identifier, which is the default URL scheme used by Dynamic Links.
- In the Capabilities tab of your app's Xcode project, enable Associated Domains and add the following to the Associated Domains list:
- If you want to receive Dynamic Links with a fully-custom domain, in your Xcode project's
Info.plist
file, create a key calledFirebaseDynamicLinksCustomDomains
and set it to your app's Dynamic Links URL prefixes. For example: - Import the Firebase module in your
UIApplicationDelegate
: - Configure a
FirebaseApp
shared instance, typically in your app'sapplication:didFinishLaunchingWithOptions:
method: - Next, in the
application:continueUserActivity:restorationHandler:
method, handle links received as Universal Links when the app is already installed (on iOS 9 and newer): - Finally, in the
application:openURL:sourceApplication:annotation:
(iOS 8 and older) andapplication:openURL:options:
(iOS 9 and up) methods, handle links received through your app's custom URL scheme. These methods are called when your app receives a link on iOS 8 and older, and when your app is opened for the first time after installation on any version of iOS.If the Dynamic Link isn't found on your app's first launch (on any version of iOS), this method will be called with theFIRDynamicLink
'surl
set tonil
, indicating that the SDK failed to find a matching pending Dynamic Link.
Comments
Post a Comment