| commit | 180cfbb30807769bddc9d367b302af71e1e32ce9 | [log] [tgz] |
|---|---|---|
| author | Pedro Loureiro <[email protected]> | Wed Jul 06 15:32:27 2022 +0000 |
| committer | Pedro Loureiro <[email protected]> | Thu Jul 07 09:46:09 2022 +0000 |
| tree | 9cb327390a79328bb41e4fbbcafecb1cb2ffa6a5 | |
| parent | 3c7996dc67f39b20caaa044977d4d969b7a07e68 [diff] |
Fix ModulesUtilsTestingTests on devices < T The tests access APIs introduced in T which now need to be guarded. It wasn't obvious but it was actually the test rule accessing these APIs so the first attempt to fix this didn't work. Test: use a device running something older than T Test: atest ModulesUtilsTestingTests Ignore-AOSP-First: Fix MTS tests Bug: 237363728 Change-Id: Ia4b7f1f6e2974b6c8b2683c90d9918a847829ced
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.