Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

native messaging android app source code

Can any one tell me where I can see the native messaging app source code which come with android if it is open source

I am looking for the source code of following application and version

Application name - Messaging

version - 2.3.6

I have checked this link http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android-apps/2.0_r1/com/android/mms/ui/ComposeMessageActivity.java#ComposeMessageActivity.MsgListMenuClickListener.onMenuItemClick%28android.view.MenuItem%29

like image 682
Naga Avatar asked Dec 15 '22 12:12

Naga


1 Answers

This is the link to the latest code for the main screen of the Messaging app: https://github.com/android/platform_packages_apps_mms/blob/master/src/com/android/mms/ui/ConversationList.java

and this is its layout file: https://github.com/android/platform_packages_apps_mms/blob/master/res/layout/conversation_list_screen.xml

like image 85
marmor Avatar answered Dec 31 '22 09:12

marmor