I'm trying to create an email application which is depending upon the same function of our android mobile's default email application. How can I get that default email functions source code?

link|improve this question
feedback

3 Answers

up vote 9 down vote accepted

I think what you are looking for is K-9 mail. It looks like you're in luck. it's open source on github: https://code.google.com/p/k9mail/w/list

link|improve this answer
i need that source code. Not an .apk file to install and run that. If you know means please tell me. – user874747 Aug 12 '11 at 6:30
@Praveen Kumar, I've edited my post. It's an open source project on Google Code/github. – Phil Aug 12 '11 at 16:06
K9 is one of the best. What they(at least when I looked at the code at an earlier time) did was take the Android E-mail source code and modified it for their own needs. There is no point in reinventing the wheel especially since E-mail is a massive and often complicated beast. If you need a small thing changed use K9. – Nicholas Aug 30 '11 at 17:51
feedback

maybe this will help you: http://java.sun.com/developer/onlineTraining/JavaMail/contents.html

i've used that for my own gmail client app.

link|improve this answer
feedback

For sake of completeness, the source of the default Email application is available at http://android.git.kernel.org/?p=platform/packages/apps/Email.git;a=summary.

However, it will (or at least used to) require a fair amount of adaptation before it can be built with the SDK, as it was originally designed to be built with the platform build system before decisions about APIs available under the SDK were finalized. Unless that has changed, you may be better off working with some other codebase that someone has already adapted for SDK use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown