Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
build/ | 03-May-2024 | - | 5,012 | 4,052 | ||
java/com/android/modules/ | 03-May-2024 | - | 610 | 371 | ||
javatests/com/android/modules/ | 03-May-2024 | - | 1,772 | 1,237 | ||
proguard/ | 03-May-2024 | - | 82 | 74 | ||
proto/ | 03-May-2024 | - | 206 | 176 | ||
sdk/ | 03-May-2024 | - | 379 | 329 | ||
tools/ | 03-May-2024 | - | 450 | 339 | ||
Android.bp | D | 03-May-2024 | 4.2 KiB | 173 | 155 | |
MODULES_OWNERS | D | 03-May-2024 | 541 | 15 | 12 | |
OWNERS | D | 03-May-2024 | 210 | 12 | 10 | |
PREBUILTS_MODULE_OWNERS | D | 03-May-2024 | 846 | 19 | 17 | |
PREUPLOAD.cfg | D | 03-May-2024 | 228 | 3 | 3 | |
README.md | D | 03-May-2024 | 605 | 15 | 11 |
README.md
1# packages/modules/common 2 3This project includes mainline build and other utility code. Any library code 4intended for use by modules should go in `frameworks/libs/modules-utils` 5instead. 6 7## java code 8 9This project uses a single source path for java code. All java code should go 10in the `java` directory with subdirectories corresponding to the java package. 11`Android.bp` files should go alongside the java source files, and should only 12include java source for a single java package to encourage good code hygiene. 13 14Tests for java code should go in the `javatests` directory and follow the same 15structure.