Opening native AOSP apps for Android in eclipse

I need to edit the original Android applications from packages in terms of making my own distribution / mod .. I want to make changes to the In Call screen, lock the screen, contacts, calendar, etc. I understand that for this I will have to build everything from the source, however, I need to edit the source, and for this I need to open the applications provided by the OS as eclipse projects,

When I saw it, I saw that there is

  • missing import, which is hidden in the SDK (or missing)

  • hidden parameters inside classes.

I do not want to use reflection, because all the code is available here, but how do you create a kit for developing the platform.

or PDK? :)

Can anyone help?

+3
source share
3 answers

You start by reading the documentation .


EDIT:

If you are trying to download a single project from AOSP and compile it using the SDK, the chances are very strong that it will not work and that you will encounter problems, such as the ones you quote. You do not create Android by creating separate applications; you create Android ("my own distribution / mod"), creating all the firmware. Most AOSP applications are not designed to compile the SDK, but this requires all the firmware.

+3
source

, eclipse AOSP. , eclipse, AOSP .

Android Java Framework, .

+1

Just open Eclipse, then go to the "window" + "preferences" + "android" there you will get the sdk location, then specify the appropriate path to the sdk android to run correctly ...

0
source

All Articles