AOSP Contribution

From eLinux.org
Revision as of 00:55, 15 February 2015 by Nanikjava (talk | contribs)
Jump to: navigation, search

Patches that I've submitted to Google AOSP (Android Open Source Projects) can be viewed from this link https://android-review.googlesource.com/#/q/%22Nanik+T%22

Following are some of the lessons I learned when submitting patches to AOSP:

1)Android standard, headers first grouped by system, library, then local. All headers in alphabetical order in each group.

2) use the proper notation for class

this is WRONG

    dso : NULL,
    reserved : {0}

this is CORRECT

    .version_major = 1,
    .version_minor = 0,

3) For every patch there are 2 state - review and verified state

  (*) You need +2 for Review state
  (*) You need +1 for Verify state(typically the owner) for integration and testing to confirm the changes works fine.