2

I wanted to modify/customize the android framework. I am a complete newbie in framework related stuffs. So how do i start with it?

Please suggest me some good place to start with it and initial steps and what are the future trends related to framework?

Thanks
Sneha

Smitha
  • 5,956
  • 19
  • 87
  • 150

1 Answers1

3
  1. Download the android source code.

http://source.android.com/source/initializing.html

http://source.android.com/source/downloading.html

  1. Make your changes to the android framework code

    • Modify existing classes
    • Add new classes. etc
  2. In the downloaded source directory, please find: /devlopement/docs/howto_build_SDK.txt. It should be something like this.

  3. Follow the steps to build your own sdk. To build an SDK for MacOS and Linux, these are the steps:

    $ cd ~/my-android-git
    $ . build/envsetup.sh
    $ lunch sdk-eng
    $ make sdk
    
fedorqui 'SO stop harming'
  • 228,878
  • 81
  • 465
  • 523
Calvin
  • 3,233
  • 1
  • 28
  • 39