Intercept message from specific number in Ionic Framework - android

I am developing a mobile app using ionic framework. I found cordova-plugin-sms (https://github.com/floatinghotpot/cordova-plugin-sms) can be used to send sms to a particular number without opening the native app.
I wanted to know if there is a way to use my app to process the text received from one specific number only? i.e, if a message comes from a number +1234, only my app should be able to read it, if a SMS arrives from another number, let the native SMS app handle it.

Related

Receiving notification of an Android app through another app

I was wondering if it is possible to receive the notifications and messages of one app (e.g. WhatsApp) via another app (user developed app) without changing anything in the source app and sending back the user response to the source application (WhatsApp).
I tried to do this in IOS but IOS does not allow such interactions between the applications.

Is there any way to send sms via Expo-ReactNative without getting SMS environment? (2022)

I want to make an app that will going to send messages with a button, that will send particular message to the phone number list, without redirecting to phone's natural SMS Sending Environment (which it does in my app right now). I have seen that there are some ways to do it with React Native bare projects, but I want to use Expo.
I tried https://docs.expo.dev/versions/latest/sdk/sms/ documentation steps and i endup with SMS page redirecting. Also tried bare React Native libraries such as :
import * as SMS from "expo-sms";
import SendSMS from "react-native-sms";
They did not work.

Is it possible to read what is sent in sms in android app and use the data and then delete the sms so only the app sees it?

I have a question... I wonder, is it possible to make an application, that will read specific sms (always the same value, 2 numbers), and then delete the sms, so that the user does not see it (meaning that only the app will see it and use the data, but the user of the app will not be bothered with the information the app used)? The application would first send sms to the other device and then it would get the response in two float numbers. Is there a possibility to make that?

How to add control to existing view?

I'm working on an app which allows users to take a snapshot of their active SMS messages.
Is it possible to add a button on the existing android SMS message view without changing the default SMS sending application?
I just want to add some of a widget to the default sms app which the user already has installed... Thanks!
No this is definitelly not possible..You can intercept for incoming messages with proper permissions though..Also you can write an app which will read SMS messages stored on the device..
But you really cant write an app modifying existing SMS app..
It's actually opensource, so you can easily get its sources and you can then try to make some changes and possibly to release it as a separate application on the Google Play.

Run sms app for result

Hello I would like to make app using android sms app, flow i want to have is:
My app -> Android SMS App(native, handcent, etc) ->(after sending message) My app (check if sms was sent).
I know that it is possible on iPhone, but what with android?
After some research i found that this is impossible using native app. I can do this inside own app only.

Categories

Resources