react-native-send-receive-sms-android

1.0.91 • Public • Published

react-native-send-receive-sms-android

Getting started

$ npm install react-native-send-receive-sms-android --save

Mostly automatic installation

$ react-native link react-native-send-receive-sms-android

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-send-receive-sms-android and add RNReactNativeAndroidSms.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNReactNativeAndroidSms.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNReactNativeAndroidSmsPackage; to the imports at the top of the file
  • Add new RNReactNativeAndroidSmsPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-send-receive-sms-android'
    project(':react-native-send-receive-sms-android').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-send-receive-sms-android/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-send-receive-sms-android')
    

Windows

Read it! :D

  1. In Visual Studio add the RNReactNativeAndroidSms.sln in node_modules/react-native-send-receive-sms-android/windows/RNReactNativeAndroidSms.sln folder to their solution, reference from their app.
  2. Open up your MainPage.cs app
  • Add using React.Native.Android.Sms.RNReactNativeAndroidSms; to the usings at the top of the file
  • Add new RNReactNativeAndroidSmsPackage() to the List<IReactPackage> returned by the Packages method

Usage for Reading Messages

import {GetMessages} from 'react-native-send-receive-sms-android';

try
{
GetMessages(NumberOfMessages).then((messages)=>{
	for(const message of messages)
	{
		console.log(message.address,
		message.subject,
		message.status,
		message.body,
		message.DateOfMessage,
		message.person);

	}
}).catch((err)=>{
	console.log(err);
})
}
catch(err)
{
	console.log(err);
}

Options

NumberOfMessages - Integer

Usage for Sending Messages

import {SendMessage} from 'react-native-send-receive-sms-android';

try
{
SendMessage(Message,PhoneNo).then((result)=>{
	console.log(result)
}).catch((err)=>{
	console.log(err);
})
}
catch(err)
{
	console.log(err);
}

Options

Message - String

PhoneNo - String

Package Sidebar

Install

npm i react-native-send-receive-sms-android

Weekly Downloads

1

Version

1.0.91

License

none

Unpacked Size

396 kB

Total Files

48

Last publish

Collaborators

  • kshitiz07