nativescript-logEntries
This plugin provide a way to use LogEntries service on a NativeScript project.
The plugin is a wrap of the android and ios official sdks
https://github.com/logentries/le_android
https://github.com/logentries/le_ios
Installation
tns plugin add nativescript-logEntries
Usage
First create a new Log for android and/or iOS and store the tokens that logEntries will provide to you
//Somewhere on your app. ; logEntries.init"YourToken"; logEntries.log"this is the message";
If you want to use it to send crash reports, store the crash on devie and send it next time the device is opened.
//on app.ts ; application.onapplication.uncaughtErrorEvent, ;