1.0.91 • Published 4 years ago
react-native-send-receive-sms-android v1.0.91
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
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-send-receive-sms-androidand addRNReactNativeAndroidSms.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNReactNativeAndroidSms.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- 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 thegetPackages()method
- 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') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-send-receive-sms-android')
Windows
- In Visual Studio add the
RNReactNativeAndroidSms.slninnode_modules/react-native-send-receive-sms-android/windows/RNReactNativeAndroidSms.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using React.Native.Android.Sms.RNReactNativeAndroidSms;to the usings at the top of the file - Add
new RNReactNativeAndroidSmsPackage()to theList<IReactPackage>returned by thePackagesmethod
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