Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
build/ | 03-May-2024 | - | 315 | 239 | ||
hiddenapi/ | 03-May-2024 | - | 38 | 28 | ||
java/ | 03-May-2024 | - | 4,569 | 2,780 | ||
javatest/ | 03-May-2024 | - | 2,515 | 2,049 | ||
Android.mk | D | 03-May-2024 | 735 | 20 | 3 | |
OWNERS | D | 03-May-2024 | 125 | 7 | 6 | |
README.md | D | 03-May-2024 | 914 | 24 | 19 |
README.md
1# Platform compat tools 2 3Tools for Android App Compat (go/android-compat). 4 5## What's in here? 6 7<!-- 8# Get the dir structure: 9$ tree -F --dirsfirst -d --prune tools/platform-compat/ 10--> 11 12``` 13├── build # python helper scripts for build 14├── java # All Java source files; directories follow corresponding java packages 15│ └── android 16│ ├── compat 17│ │ └── annotation # Annotations used for go/compat-framework and go/unsupportedappusage 18│ └── processor 19│ └── compat # Java annotation processors for annotations defined in src/ 20│ ├── changeid # Creates compat_config xml files from @ChangeId constants 21│ └── unsupportedappusage # Creates csv files with source positions for @UnsupportedAppUsage elements 22└── javatest # Tests for source files defined under java/ 23``` 24