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