Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
automotive_landscape/ | 25-Apr-2025 | - | 34 | 33 | ||
automotive_large_portrait/ | 25-Apr-2025 | - | 36 | 35 | ||
automotive_round/ | 25-Apr-2025 | - | 34 | 33 | ||
automotive_ultrawide_cutout/ | 25-Apr-2025 | - | 36 | 35 | ||
overlays/ | 25-Apr-2025 | - | 2,356 | 1,268 | ||
README.md | D | 25-Apr-2025 | 1.4 KiB | 45 | 41 |
README.md
1# AAOS Skins 2 3Each skin demonstrates different device configuration. 4 5## Use skin 61. locate `<andorid_patch>/out/target/product/emulator_car64_x86_64/config.ini`, path might change depends on board name. 72. find below code 8``` 9skin.name=1408x792 10skin.path=1408x792 11### automotive_landscape start 12; skin.name = automotive_landscape 13; skin.path = <andorid_patch>/device/generic/car/emulator/skins/automotive_landscape 14; hw.initialOrientation = landscape 15### automotive_landscape end 16 17### automotive_large_portrait start 18; skin.name = automotive_large_portrait 19; skin.path = <andorid_patch>/device/generic/car/emulator/skins/automotive_large_portrait 20; hw.initialOrientation = portrait 21### automotive_large_portrait end 22 23### automotive_ultrawide_cutout start 24; skin.name = automotive_ultrawide_cutout 25; skin.path = <andorid_patch>/device/generic/car/emulator/skins/automotive_ultrawide_cutout 26; hw.initialOrientation = landscape 27### automotive_ultrawide_cutout end 28``` 293. comment out the original skin 30``` 31; skin.name=1408x792 32; skin.path=1408x792 33``` 344. Un-comment desiered skin 35``` 36### automotive_ultrawide_cutout start 37 skin.name = automotive_ultrawide_cutout 38 skin.path = <andorid_patch>/device/generic/car/emulator/skins/automotive_ultrawide_cutout 39 hw.initialOrientation = landscape 40### automotive_ultrawide_cutout end 41``` 425. launch emulator again with wipe-data flag 43``` 44emulator -wipe-data 45```