android消息传递源码
我计划创建一个应用程序,用户可以通过该应用程序对其短信进行安全保护。我可以查看 Android 手机消息传递的源代码吗?如何?
I am planning to create an application which the user can put security to their SMS. Is there a possibility for me to see the source code of the Messaging of Android phone? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android 源代码也镜像在 Github 上。 SMS/MMS 包可以在以下位置找到:https://github.com/android/platform_packages_apps_mms
Android source code is also mirrored on Github. The SMS/MMS package can be found on: https://github.com/android/platform_packages_apps_mms
请参阅https://android.googlesource.com/platform/packages/apps/Mms 适用于 Android 消息应用程序。
See https://android.googlesource.com/platform/packages/apps/Mms for the Android Messaging app.
我发现Grep 代码上的这个 类。您可以环顾四周,看看它是否适合您。但是,对于与短信相关的任何内容,您可能不需要更改源代码,只需在适当的位置拦截调用即可!
I found this class on Grep Code. You can look around and see if it works for you. However, for anything related to SMS, you probably do not need to change the source code, just intercept calls at appropriate places !