I am trying to create my own custom rom, and I want to change the default wallpaper. How can I change the default wallpaper on custom rom's. To be more exact, where are default wallpapers generically located in the source code of various rom's.
Asked
Active
Viewed 2,712 times
2 Answers
4
For most custom roms it can be found in:
vendor/{SOME_CUSTOM_VENDOR_NAME}/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
e.g. LineageOS:
vendor/lineage/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
e.g. HavocOS:
vendor/havoc/overlay/common/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
For plain AOSP it is:
frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
And it can also be in a Device Tree Overlay as well.

Prabhdeep Singh
- 176
- 1
- 16
-
1For LineageOS 14.1 the vendor name is "CM" – GigaKatowice Nov 26 '20 at 08:32
0
The default wallpaper is usually found in
frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
But it can be overwritten by OEM overlays found in device/vendor
.

Prabhdeep Singh
- 176
- 1
- 16

Christina
- 1
- 2