• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

build/14-Jan-2024-548372

java/15-Dec-2024-15,0617,319

javatests/15-Dec-2024-5,1573,771

tools/14-Jan-2024-5944

.gitignoreD14-Jan-202446 54

Android.bpD14-Jan-2024788 2018

OWNERSD14-Jan-2024243 118

PREUPLOAD.cfgD14-Jan-2024421 1210

README.mdD14-Jan-2024668 1711

TEST_MAPPINGD15-Dec-20241.4 KiB6362

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