Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
res/ | 25-Apr-2025 | - | 946 | 438 | ||
src/com/android/car/customization/tool/ | 25-Apr-2025 | - | 4,562 | 2,509 | ||
tests/ | 25-Apr-2025 | - | 645 | 437 | ||
Android.bp | D | 25-Apr-2025 | 1.5 KiB | 57 | 51 | |
AndroidManifest.xml | D | 25-Apr-2025 | 1.9 KiB | 47 | 24 | |
OWNERS | D | 25-Apr-2025 | 19 | 2 | 1 | |
README.md | D | 25-Apr-2025 | 741 | 29 | 18 | |
com.android.car.customization.tool.xml | D | 25-Apr-2025 | 1.2 KiB | 27 | 9 |
README.md
1# Customization Tool 2 3This is a privileged app for testing UI customizations (e.g. RROs) on AAOS. 4 5## Usage 6 7**Build and install** 8 9``` 10m -j CustomizationTool && adb install $ANDROID_PRODUCT_OUT/system/priv-app/CustomizationTool/CustomizationTool.apk 11``` 12 13**Start the service** 14 15The easiest way to start the service is through KitchenSink through the "Customization Tool" option 16in the menu. Otherwise adb can be used: 17 18``` 19adb shell settings put secure enabled_accessibility_services com.android.car.customization.tool/com.android.car.customization.tool.CustomizationToolService 20``` 21 22**Stop the service** 23 24The service can be stopped using KitchenSink or using adb: 25 26``` 27adb shell settings put secure enabled_accessibility_services null 28``` 29