Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
build/ | 03-May-2024 | - | 550 | 374 | ||
java/ | 03-May-2024 | - | 13,635 | 6,349 | ||
javatests/ | 03-May-2024 | - | 4,579 | 3,312 | ||
jni/expresslog/ | 03-May-2024 | - | 154 | 110 | ||
tools/ | 03-May-2024 | - | 59 | 44 | ||
.gitignore | D | 03-May-2024 | 46 | 5 | 4 | |
Android.bp | D | 03-May-2024 | 788 | 20 | 18 | |
OWNERS | D | 03-May-2024 | 243 | 11 | 8 | |
PREUPLOAD.cfg | D | 03-May-2024 | 421 | 12 | 10 | |
README.md | D | 03-May-2024 | 668 | 17 | 11 | |
TEST_MAPPING | D | 03-May-2024 | 1.3 KiB | 57 | 56 |
README.md
1# frameworks/libs/modules-utils/ 2 3Libraries and utilities intended for use by module and framework code. 4 5Since modules use the code in this project, it must adhere to mainline 6requirements, for example, by setting min_sdk_version in Soong modules. 7 8## Java code 9 10This project uses a single source path for Java code. All Java code should go 11in the `java` directory with subdirectories corresponding to the java package. 12`Android.bp` files should go alongside the java source files, and should only 13include java source for a single java package to encourage good code hygiene. 14 15Tests for java code should go in the `javatests` directory and follow the same 16structure. 17