Is there an open source email client for Android?

I am trying to create an email application that depends on the same default function of our email application for Android. How can I get this default email function source code?

+4
source share
3 answers

I think you are looking for the letter K-9. You seem lucky. this is open source on github: https://github.com/k9mail/k-9

+13
source

For completeness, the default email application is available at

http://android.git.kernel.org/?p=platform/packages/apps/Email.git;a=summary .

EDIT: Palaniraja offers the following alternative link, however it does not support the ability to view the source file in the original repository.

https://android.googlesource.com/platform/packages/apps/Email/

However, it (or at least got used to it) will require sufficient adaptation before it can be built using the SDK, as it was originally designed to be built using the platform build system before deciding on the APIs available in the SDK have been completed. If this has not changed, you may be better off working with some other code base that someone has already adapted to use the SDK.

+6
source

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

I used this for my own gmail client application.

+1
source

All Articles