1.0.11 • Published 3 years ago

nativescript-nointeract-sms v1.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

nativescript-nointeract-sms

Sending sms without user interaction.

var smsManager = android.telephony.SmsManager.getDefault();

smsManager.sendTextMessage("0123232332",null,"Hello",null,null);

(Optional) Prerequisites / Requirements

To send sms without user interaction on Android your app must request permission to do so. The following must be in your app's AndroidManifest.xml

<uses-permission android:name="android.permission.SEND_SMS" />

iOS sms feature will soon be implemented.

Installation

Install the plugin using the NativeScript CLI tooling

tns plugin add nativescript-nointeract-sms

Usage

To use the module you must first require() it from your project's node_modules directory:

After you have a reference to the module you can then call the available methods.

```js
	var temp = require( "nativescript-nointeract-sms" );

temp.sms(number,message);

```

Methods:

sms(number,message)

Send sms on the background.

Parameters:

number: SMS number to use.

message: String to send.

License

MIT, 2017

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago