Skip to content

QL-Nisha-Rana/rn-awesome-sms

Repository files navigation

rn-awesome-sms

rn-awesome-sms is a comprehensive React Native package designed to enhance your application's SMS handling capabilities on Android devices. This module allows your app to seamlessly receive new SMS messages, retrieve SMS history, and manage sent, received, and all SMS messages efficiently. With native integration into Android's SMS functionalities, rn-awesome-sms provides robust and reliable SMS management directly within your React Native app.

Getting started

Installation

Install the library using npm:

npm install rn-awesome-sms

Install the library using either Yarn:

yarn add rn-awesome-sms

Permissions

Ensure the following permissions are added to your AndroidManifest.xml:

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

Usage

Importing the Package

import {
  requestMessagePermission,
  getAllMessages,
  getIncomingMessages,
  getOutgoingMessages,
} from 'rn-awesome-sms';

For Checking READ_SMS Permission and SMS History

Use the following example to check for SMS permissions and retrieve SMS history:

import { useEffect, useState } from 'react';
import { PermissionsAndroid, Alert } from 'react-native';
import {
  getAllMessages,
  getIncomingMessages,
  getOutgoingMessages,
} from 'rn-awesome-sms';

const MyComponent = () => {
  const [permissionsGranted, setPermissionsGranted] = useState(false);
  const [allMessages, setAllMessages] = useState([]);
  const [receivedMessages, setReceivedMessages] = useState([]);
  const [sentMessages, setSentMessages] = useState([]);

  useEffect(() => {
    const requestSmsPermission = async () => {
      try {
        const granted = await PermissionsAndroid.request(
          PermissionsAndroid.PERMISSIONS.READ_SMS
        );

        if (granted === PermissionsAndroid.RESULTS.GRANTED) {
          setPermissionsGranted(true);
          getAllMessages().then(setAllMessages);
          getIncomingMessages().then(setReceivedMessages);
          getOutgoingMessages().then(setSentMessages);
        } else {
          setPermissionsGranted(false);
          Alert.alert('Permission Denied', 'SMS permission is required to retrieve messages.');
        }
      } catch (err) {
        console.warn(err);
      }
    };

    requestSmsPermission();
  }, []);

  return (
    // Your component JSX
  );
};

Subscribing to Incoming SMS

The following example shows how to subscribe to incoming SMS messages:

import React, { useEffect, useState } from 'react';
import { PermissionsAndroid, DeviceEventEmitter, Alert } from 'react-native';
import { requestMessagePermission } from 'rn-awesome-sms';

const MyComponent = () => {
  const [permissionsGranted, setPermissionsGranted] = useState(false);

  useEffect(() => {
    const requestSmsPermission = async () => {
      try {
        const granted = await PermissionsAndroid.request(
          PermissionsAndroid.PERMISSIONS.RECEIVE_SMS
        );

        if (granted === PermissionsAndroid.RESULTS.GRANTED) {
          setPermissionsGranted(true);
        } else {
          setPermissionsGranted(false);
        }
      } catch (err) {
        console.warn(err);
      }
    };

    requestSmsPermission();
  }, []);

  useEffect(() => {
    if (permissionsGranted) {
      const subscriber = DeviceEventEmitter.addListener(
        'onSMSReceived',
        (message) => {
          const { messageBody, senderPhoneNumber } = message;
          Alert.alert(
            'SMS received',
            `Message Body: ${messageBody} \nSender Number: ${senderPhoneNumber}`
          );
        }
      );

      return () => {
        subscriber.remove();
      };
    }
  }, [permissionsGranted]);

  return (
    // Your component JSX
  );
};

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

Keywords

  • React Native
  • SMS
  • Android
  • SMS Management
  • React Native SMS
  • Receive SMS
  • Read SMS
  • Send SMS
  • SMS History

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published