get call record for react native
npm i react-native-call-record --save
react-native link react-native-call-record
Example
import CallRecord from 'react-native-call-record';
CallRecord.getAll({}).then(obj => {
console.log(obj);
});
Property | Type | Description |
---|---|---|
isDistinct | bool (default false) | Enable or disable distinct |
limit | number(default -1) | limit of result |
Property | Type | Description |
---|---|---|
phoneNumber | string | phone |
duration | number | duration |
name | string | name |
dateTime | string | dateTime |
type | number | type |
MIT