• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

res/25-Apr-2025-946438

src/com/android/car/customization/tool/25-Apr-2025-4,5622,509

tests/25-Apr-2025-645437

Android.bpD25-Apr-20251.5 KiB5751

AndroidManifest.xmlD25-Apr-20251.9 KiB4724

OWNERSD25-Apr-202519 21

README.mdD25-Apr-2025741 2918

com.android.car.customization.tool.xmlD25-Apr-20251.2 KiB279

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