This package has been deprecated

Author message:

Read more: https://gist.github.com/brentvatne/9038b16b4f42a21cea40ad5c35fdb74

expo-firebase-links

2.0.0 • Public • Published

expo-firebase-links

expo-firebase is still in RC and therefore subject to breaking changings. Be sure to run yarn upgrade and cd ios; pod install when upgrading.

expo-firebase-links exposes the native Firebase Dynamic Linking API. You can create and share links for both iOS and Android.

Full documentation

Installation

Firstly, you need to install the package from npm registry.

npm install expo-firebase-links or yarn add expo-firebase-links

iOS

Cocoapods

If you're using Cocoapods, add the dependency to your Podfile:

pod 'EXFirebaseLinks', path: '../node_modules/expo-firebase-links/ios'

and run pod install.

Common Setup

Now follow the setup instructions in the docs.

Update your AppDelegate.m file:

Import RN Firebase Links header file:

#import "EXFirebaseLinks.h"

Add the following to the didFinishLaunchingWithOptions method before [FIRApp Configure]:

[FIROptions defaultOptions].deepLinkURLScheme = CUSTOM_URL_SCHEME;

where CUSTOM_URL_SCHEME is the custom URL scheme you defined in your Xcode project.

Add the following inside the @implementation AppDelegate annotation:

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString *, id> *)options {
  return [[EXFirebaseLinks instance] application:application openURL:url options:options];
}
 
- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *))restorationHandler {
  return [[EXFirebaseLinks instance] application:application continueUserActivity:userActivity restorationHandler:restorationHandler];
}

You might run into situation when you need to handle more than one link configuration i.e. when using Facebook SDK to handle push notification / login links if that is the case you can perform check below

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options {
  BOOL handled = [[FBSDKApplicationDelegate sharedInstance] application:application openURL:url sourceApplication:options[UIApplicationOpenURLOptionsSourceApplicationKey] annotation:options[UIApplicationOpenURLOptionsAnnotationKey]];
 
  if (!handled) {
      handled = [[EXFirebaseLinks instance] application:application openURL:url options:options];
  }
 
  return handled;
}

Android

  1. Append the following lines to android/settings.gradle:

    include ':expo-firebase-links'
    project(':expo-firebase-links').projectDir = new File(rootProject.projectDir, '../node_modules/expo-firebase-links/android')

    and if not already included

    include ':expo-core'
    project(':expo-core').projectDir = new File(rootProject.projectDir, '../node_modules/expo-core/android')
     
    include ':expo-firebase-app'
    project(':expo-firebase-app').projectDir = new File(rootProject.projectDir, '../node_modules/expo-firebase-app/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:

    api project(':expo-firebase-links')

    and if not already included

    api project(':expo-core')
    api project(':expo-firebase-app')
  3. Now follow the configuration instructions in the docs.

  4. Include the module in your expo packages: ./android/app/src/main/java/host/exp/exponent/MainActivity.java

    /*
    * At the top of the file.
    * This is automatically imported with Android Studio, but if you are in any other editor you will need to manually import the module.
    */
    import expo.modules.firebase.app.FirebaseAppPackage; // This should be here for all Expo Firebase features. 
    import expo.modules.firebase.links.FirebaseLinksPackage;
     
    // Later in the file... 
     
    @Override
    public List<Package> expoPackages() {
      // Here you can add your own packages. 
      return Arrays.<Package>asList(
        new FirebaseAppPackage(), // This should be here for all Expo Firebase features. 
        new FirebaseLinksPackage() // Include this. 
      );
    }

Usage

import React from 'react';
import { View } from 'react-native';
import firebase from 'expo-firebase-app';
 
// API can be accessed with: firebase.links();
 
export default class DemoView extends React.Component {
  async componentDidMount() {
    // ... initialize firebase app
 
    const link = new firebase.links.DynamicLink(
      'https://example.com?param1=foo&param2=bar',
      'abc123.app.goo.gl'
    ).android
      .setPackageName('com.example.android')
      .ios.setBundleId('com.example.ios');
 
    try {
      // Create a url that you can share with others.
      const url = await firebase.links().createDynamicLink(link);
    } catch ({ message }) {
      // An Error was thrown.
      console.warn(message);
    }
  }
  render() {
    return <View />;
  }
}

Package Sidebar

Install

npm i expo-firebase-links

Weekly Downloads

6

Version

2.0.0

License

MIT

Unpacked Size

55 kB

Total Files

20

Last publish

Collaborators

  • radoslawkrzemien
  • pkham
  • szdziedzic
  • tsapeta
  • wkozyra
  • ide
  • lukmccall
  • evanbacon