Skip to content Skip to sidebar Skip to footer

Compile Email Application From Aosp

I would like to add some features to the AOSP Email application which is not supported anymore. So I cloned the repository here (which is a Eclipse project) and migrated it to a Gr

Solution 1:

So I cloned the repository here (which is a Eclipse project) and migrated it to a Gradle project in Android Studio.

None of the AOSP projects are designed to be used this way. They are designed to be built as part of a firmware build.

If your objective is to contribute changes back to the AOSP, you will need to follow their instructions for using their source code.

If your objective was to create your own email app, you may be better served starting with some base that is buildable as a regular Android app (e.g., K-9 Mail). Otherwise, you are going to need to fix all of those problems, as they reference things that are not going to be available to your app project via the Android SDK.

Post a Comment for "Compile Email Application From Aosp"