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

..--

build/25-Apr-2025-5,7834,725

java/com/android/modules/25-Apr-2025-616375

javatests/com/android/modules/25-Apr-2025-1,7891,254

proguard/25-Apr-2025-8375

proto/25-Apr-2025-211180

sdk/25-Apr-2025-322282

tools/25-Apr-2025-497378

Android.bpD25-Apr-2025753 1917

MODULES_OWNERSD25-Apr-2025541 1512

OWNERSD25-Apr-2025309 1815

PREBUILTS_MODULE_OWNERSD25-Apr-2025926 2019

PREUPLOAD.cfgD25-Apr-2025228 33

README.mdD25-Apr-2025605 1511

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.