gpt4 book ai didi

android - 我可以发送 "SMS received intent"吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:57:51 26 4
gpt4 key购买 nike

标题很明显。我可以在 Android 手机上发送“SMS received intent”吗?换句话说,通过虚拟接收自定义 SMS 来伪造某些 SMS 接收者。

最佳答案

您可以创建假短信(GMS 类型),以便像真实消息一样内置捕获。这是 my answer

 Intent intent = new Intent();
intent.setClassName("com.android.mms",
"com.android.mms.transaction.SmsReceiverService");
intent.setAction("android.provider.Telephony.SMS_RECEIVED");
intent.putExtra("pdus", new Object[] { pdu });
intent.putExtra("format", "3gpp");
context.startService(intent);

关于android - 我可以发送 "SMS received intent"吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12489716/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com