cordova plugin for android application.
cordova plugin add https://github.com/nicholaslopiccolo/cordova-plugin-myplugin.git
cordova plugin add --link ../cordova-plugin-myplugin/
to the android manifest
<uses-permission android:name="android.permission.SEND_SMS" />
Listen all the Log from a specific tag: Java code example:
import android.util.Log;
Log.i("tag","this is a log.");
From terminal:
adb -d logcat tag:I *:S
Un buon plugin da cui prendere spunto: https://github.com/katzer/cordova-plugin-local-notifications/blob/master/plugin.xml
<preference name="KeepRunning" value="true"/>