Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 425 Bytes

File metadata and controls

18 lines (12 loc) · 425 Bytes

react-native-firebase-app-instance-id

Getting started

$ npm install react-native-firebase-app-instance-id --save

Mostly automatic installation

$ react-native link react-native-firebase-app-instance-id

Usage

import { getId as getAppInstanceId } from 'react-native-firebase-app-instance-id';

getAppInstanceId().then((appInstanceId: string) => {
  console.log('appInstanceId', appInstanceId)
});