npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@solimanware/capacitor-message-reader

v6.1.1

Published

A capacitor plugin to read SMS and MMS inbox

Downloads

277

Readme

📱 Message Reader Plugin

GitHub license npm version

A Capacitor well optimized plugin for reading SMS "and MMS" messages on Android devices.

Features

  • 📥 Read SMS and MMS messages
  • 🔍 Advanced filtering options
  • 🔐 Permission handling
  • 📅 Date range filtering
  • 🔢 Pagination support

Installation

npm i @solimanware/capacitor-message-reader
npx cap sync

Usage

First, import the plugin in your TypeScript file:

import { MessageReader } from '@solimanware/capacitor-message-reader';

Checking Permissions

Before accessing messages, check if your app has the necessary permissions, you can use @awesome-cordova-plugins/android-permissions for now.

Reading Messages

Use the getMessages method to retrieve messages based on various filters:

import { MessageReader } from '@solimanware/capacitor-message-reader';

const getMessages = async () => {
    const filter = {
        body: 'Hello',
        sender: '+1234567890',
        minDate: Date.now() - 7 * 24 * 60 * 60 * 1000, // Last 7 days
        limit: 50
    };

    try {
        const result = await MessageReader.getMessages(filter);
        console.log('Retrieved messages:', result.messages);
    } catch (error) {
        console.error('Error fetching messages:', error);
    }
};

API

MessageReaderPlugin

getMessages(filter: GetMessageFilterInput): Promise<{ messages: MessageObject[] }>

Retrieves messages based on the provided filter criteria.

GetMessageFilterInput

| Property | Type | Description | |------------|------------|--------------------------------------------------------| | ids | string[] | Array of message IDs to filter by | | body | string | Text to search for in the message body | | sender | string | Phone number or address to filter by | | minDate | number | Minimum date (in milliseconds since epoch) to filter | | maxDate | number | Maximum date (in milliseconds since epoch) to filter | | indexFrom | number | Starting index for pagination | | indexTo | number | Ending index for pagination | | limit | number | Maximum number of messages to return |

MessageObject

Represents a message with the following properties:

| Property | Type | Description | |-------------|---------------------|-------------------------------------------------| | id | string | Unique identifier of the message | | date | number | Timestamp of the message (milliseconds) | | messageType | 'sms' | 'mms' | Type of the message | | sender | string | Phone number or address of the sender/recipient | | body | string | Content of the message |

Permissions

This plugin requires the following permissions:

  • android.permission.READ_SMS

Make sure to include these permissions in your AndroidManifest.xml file:

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

Notes

  • This plugin is designed for Android devices only.
  • Ensure compliance with privacy laws and regulations when using this plugin to access user messages.
  • Always request user consent before reading their messages.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.

Donate

If you find this plugin helpful and want to support its development, consider making a donation. Your contribution helps maintain and improve the Message Reader Plugin.

Donate

Every donation, no matter how small, is greatly appreciated and motivates us to keep enhancing this plugin. Thank you for your support!