Name Date Size #Lines LOC

..--

Android.bpH A D25-Apr-20251.3 KiB4440

README.mdH A D25-Apr-2025606 2418

android.content.pm.flags-aconfig-java-export.jarHD25-Apr-202510.3 KiB

android.os.flags-aconfig-java-export.jarHD25-Apr-202510.5 KiB

README.md

1Prebuilts of exported flag libraries from platform and other Mainline modules
2that the ART Module needs.
3
4To update:
5
61. Build the ART Module on the full AOSP tree.
7
8    ```
9    m com.android.art
10    ```
11
121. Copy the jars from the build intermediates.
13
14    ```
15    declare -a locations=(
16      "frameworks/base/android.content.pm.flags-aconfig-java-export"
17      "frameworks/base/android.os.flags-aconfig-java-export"
18    )
19    for location in "${locations[@]}"; do
20      cp out/soong/.intermediates/$location/android_common_apex31/javac/*.jar \
21          prebuilts/runtime/mainline/flags
22    done
23    ```
24