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?
Asked
Active
Viewed 2.3k times
3 Answers
12
Android source code is also mirrored on Github. The SMS/MMS package can be found on: https://github.com/android/platform_packages_apps_mms

andersonvom
- 11,701
- 4
- 35
- 40
10
See https://android.googlesource.com/platform/packages/apps/Mms for the Android Messaging app.

Vadim Kotov
- 8,084
- 8
- 48
- 62

Jeffrey
- 101
- 3
3
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 !

Abhinav Manchanda
- 6,546
- 3
- 39
- 46
-
thanks for the link.. where can i view the source code of its manifest and xml of it? – sean Jan 13 '11 at 10:39
-
1On the left hand side Navigation Bar, click on the Files tab and you'll be able to see the whole source. – Abhinav Manchanda Jan 13 '11 at 11:44