| commit | b7f66a5f828f09188ca2dda5597341e4331f4f43 | [log] [tgz] |
|---|---|---|
| author | Sandeep Bandaru <sandeepbandaru@google.com> | Wed Dec 04 09:40:43 2024 +0000 |
| committer | Sandeep Bandaru <sandeepbandaru@google.com> | Wed Dec 04 09:40:43 2024 +0000 |
| tree | b7945feff579938679b6e45d9f4299e0a5e1d2e3 | |
| parent | c6d82fd157dc6b2aa2569d2bdbaa1b7d394a98e0 [diff] |
Create util lib for android internal utility classes to use in module Multiple internal util classes like AndroidFuture and ServiceConnector are required to be used in ondeviceintelligence module code. So we extract them to a different namespace under `module.utils` to allow using in the module API and service jars. Bug: 376427781 Flag: build.release_ondevice_intelligence_module Change-Id: I55c0becba3d83fe27fa07e6d6516d80f46e7393e Ignore-AOSP-First: related changes in internal topic
Libraries and utilities intended for use by module and framework code.
Since modules use the code in this project, it must adhere to mainline requirements, for example, by setting min_sdk_version in Soong modules.
This project uses a single source path for Java code. All Java code should go in the java directory with subdirectories corresponding to the java package. Android.bp files should go alongside the java source files, and should only include java source for a single java package to encourage good code hygiene.
Tests for java code should go in the javatests directory and follow the same structure.