Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Android.bp | H A D | 25-Apr-2025 | 1.3 KiB | 44 | 40 | |
README.md | H A D | 25-Apr-2025 | 606 | 24 | 18 | |
android.content.pm.flags-aconfig-java-export.jar | HD | 25-Apr-2025 | 10.3 KiB | |||
android.os.flags-aconfig-java-export.jar | HD | 25-Apr-2025 | 10.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