Skip to content

Instantly share code, notes, and snippets.

View avishayil's full-sized avatar

Avishay Bar avishayil

View GitHub Profile
@skevy
skevy / BranchLinkingIOS.js
Last active April 19, 2016 20:22
Branch Integration with React Native
import { NativeModules } from 'react-native';
import RCTDeviceEventEmitter from 'RCTDeviceEventEmitter';
const BranchLinkingManager = NativeModules.BranchLinkingManager;
const BRANCH_DEEP_LINK_NOTIF_EVENT = 'openBranchDeepLink';
const _notifHandlers = new Map();
export class BranchLinkingIOS {