恐怕:短信发送从一个app中似乎不可能检测?不可能、短信发送、app

2023-09-04 06:08:23 作者:巴黎左岸丶花开不败

我刚刚创建了一个很酷的应用程序,以短信的工作。我想告诉我的用户:请不要在worrry,我的应用程序发送短信,但你可以在你最喜欢的SMS应用跟踪它们

I have just created a cool app that work with SMS. I would like to say to my users: don't worrry, my app send SMS but you can track them in your favourite SMS application.

我不希望他们是怕我会过载的月租费。

I don't want them to be afraid that I will overload their monthly fees.

于是,我发短信的方式很简单:

So, the way I send SMS is very simple:

SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, position, pi, null);

和这是非常好的。

不幸的是,发短信没有出现在任何SMS应用程序,因此用户并不知道短信已发送。

Unfortunately, all sent SMS does not appear in any SMS application, so user doesn't know that a SMS has been send.

是的,当然,我可以创建一个列表在我的应用程序,显示发送短信,但是用户会不信任我。

Yes, of course, I could create a list in my application that shows send SMS, but the user won't trust me.

所以,我很害怕,短信发送范围内的应用程序是完全看不见的,没有办法从最终用户端跟踪它们。

So I am very afraid that SMS send within app are totally invisible and there is no way to track them from the end user side.

感谢很多的任何答案或想法。

Thank a lot for any answer or idea.

推荐答案

在没有任何其他的解决办法,答案似乎是NO,没有解决方案。

Without any other solutions, the answer seem to be "NO, there is no solutions".

这是一个很大的安全问题,在我的脑海里。

That's a big security issue, in my mind.