Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.36 KB

CONTRIBUTING.md

File metadata and controls

34 lines (24 loc) · 1.36 KB

Contributing

Code style and structure

  • 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.

Getting Started

  1. Submit an issue describing your proposed change.
  2. Fork the repository on GitHub.
  3. Clone the fork : git clone https://github.com/your-username/android.git

Making Changes

  • Create a branch : git checkout -b branch-name. Please avoid working directly on the master 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.

Submitting Changes

  • 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.

Additional Resources