nativescript-CallLog
by kozakvoj | v1.0.6
Provides call log history for NativeScript mobile applications.
npm i --save nativescript-CallLog

NativeScript Call Log

NPM

Limitations

Currently, it only works on Android.

Usage

callLogsService.getCallLog().then(callLogs => {
callLogs.data.forEach(callLog => {
console.log(`${callLog['number']} ${callLog['type']} ${callLog['date']} ${callLog['duration']}`);
})
});