- Set the Code Style Scheme to
Default
in Android Studio settings. - Run
Reformat Code
on changed files before committing. - Please check out the Code Style for Contributors section in AOSP and maintain as much consistency with them as possible.
- Submit an issue describing your proposed change.
- Fork the repository on GitHub.
- Clone the fork :
git clone https://github.com/your-username/android.git
- Create a branch :
git checkout -b branch-name
. Please avoid working directly on themaster
branch. - Make commits of logical units.
- Make sure your commit messages are in the proper format.
- Make sure you have added the necessary tests for your changes.
- Run all the tests to assure nothing else was accidentally broken.
- Push your changes to the branch in your fork of the repository.
- Submit a pull request to the repository.
- The contributors look at Pull Requests and review them on a regular basis.