diff --git a/Android.bp b/Android.bp index d2d9553d1b9e605f4992f6784bb4afe118a21bc7..8bd36b5a4a748287800a433e868bf464b5fde7c1 100644 --- a/Android.bp +++ b/Android.bp @@ -12,4 +12,24 @@ android_app { sdk_version: "current", product_specific: true, + aaptflags: ["--auto-add-overlay"], + resource_dirs: [ + "res", + "res_phone", + ], +} + +android_app { + name: "BackgroundsTablet", + + sdk_version: "current", + product_specific: true, + aaptflags: ["--auto-add-overlay"], + resource_dirs: [ + "res", + "res_tablet", + ], + overrides: [ + "Backgrounds" + ], } diff --git a/convert2webp.sh b/convert2webp.sh new file mode 100755 index 0000000000000000000000000000000000000000..9cd2fb3f0de182c56be26ad219009188c645848c --- /dev/null +++ b/convert2webp.sh @@ -0,0 +1,57 @@ +#!/bin/bash + +# Check if required commands are installed +for cmd in parallel cwebp; do + if ! command -v "$cmd" &> /dev/null; then + echo "$cmd is not installed. Please install it with:" + case "$cmd" in + parallel) + echo " sudo apt install parallel # Debian/Ubuntu" + echo " sudo pacman -S parallel # Arch" + echo " brew install parallel # macOS" + ;; + cwebp) + echo " sudo apt install webp # Debian/Ubuntu" + echo " sudo pacman -S libwebp # Arch" + echo " brew install webp # macOS" + ;; + esac + exit 1 + fi +done + +TARGET_DIRS=( + "./res/drawable-nodpi" + "./res_phone/drawable-nodpi" + "./res_tablet/drawable-nodpi" +) + +SUPPORTED_EXTENSIONS="png jpg jpeg" + +for TARGET_DIR in "${TARGET_DIRS[@]}"; do + if [ ! -d "$TARGET_DIR" ]; then + echo "Directory $TARGET_DIR does not exist. Skipping..." + continue + fi + + FILES=() + for ext in $SUPPORTED_EXTENSIONS; do + while IFS= read -r -d '' file; do + FILES+=("$file") + done < <(find "$TARGET_DIR" -maxdepth 1 -type f -iname "*.$ext" -print0) + done + + if [ ${#FILES[@]} -eq 0 ]; then + echo "No supported image files found in $TARGET_DIR." + continue + fi + + echo "Converting images in $TARGET_DIR to lossless WEBP format..." + printf "%s\0" "${FILES[@]}" | parallel -0 -eta 'cwebp -q 100 {} -o {.}.webp && rm "{}"' + + if [ $? -eq 0 ]; then + echo "Conversion completed in $TARGET_DIR. Non-WEBP files deleted." + else + echo "An error occurred during conversion in $TARGET_DIR." + fi +done diff --git a/res/drawable-nodpi/ascension_blaze.jpg b/res/drawable-nodpi/ascension_blaze.jpg deleted file mode 100644 index e30625db794293f8c63e6e64a7dd5d8b20fa55f1..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_blaze.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_blaze_small.jpg b/res/drawable-nodpi/ascension_blaze_small.jpg deleted file mode 100644 index 8de799c5a4816a83ce836c80b6decff68143cad7..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_blaze_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_ice.jpg b/res/drawable-nodpi/ascension_ice.jpg deleted file mode 100644 index 0f487fc9b09b59e5471600f900d2417990269ef7..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_ice.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_ice_small.jpg b/res/drawable-nodpi/ascension_ice_small.jpg deleted file mode 100644 index d4378887f45d13677bbe4731e3f709641a190c59..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_ice_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_mist.jpg b/res/drawable-nodpi/ascension_mist.jpg deleted file mode 100644 index 45f8e6031b5869b4708705c0f7b923c41cd0aca2..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_mist.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_mist_small.jpg b/res/drawable-nodpi/ascension_mist_small.jpg deleted file mode 100644 index 7e8c0c08b766db1a169267cfa7eaec7a7e2d060e..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_mist_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_shade.jpg b/res/drawable-nodpi/ascension_shade.jpg deleted file mode 100644 index d38fdb6a13597db57f13b655b402976e19fd109b..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_shade.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_shade_small.jpg b/res/drawable-nodpi/ascension_shade_small.jpg deleted file mode 100644 index 21c7c61e163c4c56479621e8f1ac29cab1593ec5..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_shade_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_sunset.jpg b/res/drawable-nodpi/ascension_sunset.jpg deleted file mode 100644 index 563c734d24fbe8d5677abd8022ef2a002963d96e..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_sunset.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_sunset_small.jpg b/res/drawable-nodpi/ascension_sunset_small.jpg deleted file mode 100644 index cbb66ebb2fc405cf475d43c64ef70c9948f7f271..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_sunset_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_teal_dark.jpg b/res/drawable-nodpi/ascension_teal_dark.jpg deleted file mode 100644 index 65103add5c2ea1d87aedbf644c018a35c4549637..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_teal_dark.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_teal_dark_small.jpg b/res/drawable-nodpi/ascension_teal_dark_small.jpg deleted file mode 100644 index 7bd732abb76adcb8a08f4e3ec394a38fa7bf9535..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_teal_dark_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_teal_light.jpg b/res/drawable-nodpi/ascension_teal_light.jpg deleted file mode 100644 index d665b404385ce723fbcf8d02240fdeab57fc50fb..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_teal_light.jpg and /dev/null differ diff --git a/res/drawable-nodpi/ascension_teal_light_small.jpg b/res/drawable-nodpi/ascension_teal_light_small.jpg deleted file mode 100644 index 99f739df2e8280149d1f170ef47c8d51dbe873d3..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/ascension_teal_light_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/expansion.jpg b/res/drawable-nodpi/expansion.jpg deleted file mode 100644 index e50a7146f8cbaf1619a6b171ad8ea7d0e542ffee..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/expansion.jpg and /dev/null differ diff --git a/res/drawable-nodpi/expansion_small.jpg b/res/drawable-nodpi/expansion_small.jpg deleted file mode 100644 index f332b9e1728008287c83668a02aefca23eec71fd..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/expansion_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/operation.jpg b/res/drawable-nodpi/operation.jpg deleted file mode 100644 index 064329f83f7fb0c97d1dc01e8a4d868619aa7a09..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/operation.jpg and /dev/null differ diff --git a/res/drawable-nodpi/operation_small.jpg b/res/drawable-nodpi/operation_small.jpg deleted file mode 100644 index 4fe3da396f19f742c815d9db4361d3e26c0a057a..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/operation_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/progression.jpg b/res/drawable-nodpi/progression.jpg deleted file mode 100644 index c45d90cd29439c870ffc37c40258df14ec53f456..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/progression.jpg and /dev/null differ diff --git a/res/drawable-nodpi/progression_small.jpg b/res/drawable-nodpi/progression_small.jpg deleted file mode 100644 index 745a1b4895d772702ec47d1ce3a7aa78e0ef5390..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/progression_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/propulsion.jpg b/res/drawable-nodpi/propulsion.jpg deleted file mode 100644 index 076bec9b910214aaf85a3ff550885bd7dc0c47f2..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/propulsion.jpg and /dev/null differ diff --git a/res/drawable-nodpi/propulsion_small.jpg b/res/drawable-nodpi/propulsion_small.jpg deleted file mode 100644 index a49779c57084ad362572fc2ba4b9f8d4a8e69a4c..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/propulsion_small.jpg and /dev/null differ diff --git a/res/drawable-nodpi/tessellation.jpg b/res/drawable-nodpi/tessellation.jpg deleted file mode 100644 index 8d54e436c231d1e040b5634a34c0d64e65c5892c..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/tessellation.jpg and /dev/null differ diff --git a/res/drawable-nodpi/tessellation_small.jpg b/res/drawable-nodpi/tessellation_small.jpg deleted file mode 100644 index 43156581c70072c7df2271f8b8b29d8a0c7fff73..0000000000000000000000000000000000000000 Binary files a/res/drawable-nodpi/tessellation_small.jpg and /dev/null differ diff --git a/res/values/arrays.xml b/res/values/arrays.xml deleted file mode 100644 index 749ac80506d0a14f89dd7b661bf7e674e8987af1..0000000000000000000000000000000000000000 --- a/res/values/arrays.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - ascension_blaze - ascension_ice - ascension_mist - ascension_shade - ascension_sunset - ascension_teal_light - expansion - operation - progression - propulsion - tessellation - - diff --git a/res_phone/drawable-nodpi/artistic_bauhaus.webp b/res_phone/drawable-nodpi/artistic_bauhaus.webp new file mode 100644 index 0000000000000000000000000000000000000000..fedcdb3830e650d345f84c6c067e3c09ca282861 Binary files /dev/null and b/res_phone/drawable-nodpi/artistic_bauhaus.webp differ diff --git a/res_phone/drawable-nodpi/artistic_bauhaus_small.webp b/res_phone/drawable-nodpi/artistic_bauhaus_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..de0a1c823dfacb152895c4e43fdf55f9df3dff55 Binary files /dev/null and b/res_phone/drawable-nodpi/artistic_bauhaus_small.webp differ diff --git a/res_phone/drawable-nodpi/artistic_brush_strokes.webp b/res_phone/drawable-nodpi/artistic_brush_strokes.webp new file mode 100644 index 0000000000000000000000000000000000000000..a32e24341e8ed0bd8df21ed52486a51e97b16858 Binary files /dev/null and b/res_phone/drawable-nodpi/artistic_brush_strokes.webp differ diff --git a/res_phone/drawable-nodpi/artistic_brush_strokes_small.webp b/res_phone/drawable-nodpi/artistic_brush_strokes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..4dee8bf430cb09d7d95c1a5b89d657f57621cf87 Binary files /dev/null and b/res_phone/drawable-nodpi/artistic_brush_strokes_small.webp differ diff --git a/res_phone/drawable-nodpi/geometric_wood.webp b/res_phone/drawable-nodpi/geometric_wood.webp new file mode 100644 index 0000000000000000000000000000000000000000..1893eeac675065530c351ec4c1d39194e2c21c1d Binary files /dev/null and b/res_phone/drawable-nodpi/geometric_wood.webp differ diff --git a/res_phone/drawable-nodpi/geometric_wood_maze.webp b/res_phone/drawable-nodpi/geometric_wood_maze.webp new file mode 100644 index 0000000000000000000000000000000000000000..be598bf1e9c50882097cef1ee0ac32707004f414 Binary files /dev/null and b/res_phone/drawable-nodpi/geometric_wood_maze.webp differ diff --git a/res_phone/drawable-nodpi/geometric_wood_maze_small.webp b/res_phone/drawable-nodpi/geometric_wood_maze_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..c292e3d5960468f57144c4dcced53f407b3ce4ea Binary files /dev/null and b/res_phone/drawable-nodpi/geometric_wood_maze_small.webp differ diff --git a/res_phone/drawable-nodpi/geometric_wood_small.webp b/res_phone/drawable-nodpi/geometric_wood_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..0968845b87b9d4ddd26c3f74d9ab0fd356c51463 Binary files /dev/null and b/res_phone/drawable-nodpi/geometric_wood_small.webp differ diff --git a/res_phone/drawable-nodpi/geometries_crystal.webp b/res_phone/drawable-nodpi/geometries_crystal.webp new file mode 100644 index 0000000000000000000000000000000000000000..5e1774e65d7ca4d23a659aabc99fbe06c2136eca Binary files /dev/null and b/res_phone/drawable-nodpi/geometries_crystal.webp differ diff --git a/res_phone/drawable-nodpi/geometries_crystal_small.webp b/res_phone/drawable-nodpi/geometries_crystal_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..f8c14e86ad5c0bf6bf39342ee1e21c4c9b17d068 Binary files /dev/null and b/res_phone/drawable-nodpi/geometries_crystal_small.webp differ diff --git a/res_phone/drawable-nodpi/geometries_fractals.webp b/res_phone/drawable-nodpi/geometries_fractals.webp new file mode 100644 index 0000000000000000000000000000000000000000..a5f92d62fa4aefca6ef35bc4eb5fb938851b0397 Binary files /dev/null and b/res_phone/drawable-nodpi/geometries_fractals.webp differ diff --git a/res_phone/drawable-nodpi/geometries_fractals_small.webp b/res_phone/drawable-nodpi/geometries_fractals_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..17e35807f909701a000eabdeb95912b6efc96ef8 Binary files /dev/null and b/res_phone/drawable-nodpi/geometries_fractals_small.webp differ diff --git a/res_phone/drawable-nodpi/liquid_bubble.webp b/res_phone/drawable-nodpi/liquid_bubble.webp new file mode 100644 index 0000000000000000000000000000000000000000..09eae76a8038c14359c3deeab9a29af949bf2558 Binary files /dev/null and b/res_phone/drawable-nodpi/liquid_bubble.webp differ diff --git a/res_phone/drawable-nodpi/liquid_bubble_small.webp b/res_phone/drawable-nodpi/liquid_bubble_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..2cfce489eb1c38131147eb361b39bc2ead2ff8f1 Binary files /dev/null and b/res_phone/drawable-nodpi/liquid_bubble_small.webp differ diff --git a/res_phone/drawable-nodpi/liquid_bubble_streams.webp b/res_phone/drawable-nodpi/liquid_bubble_streams.webp new file mode 100644 index 0000000000000000000000000000000000000000..c4c66a3815736fa4438a5808a3c391c05d421634 Binary files /dev/null and b/res_phone/drawable-nodpi/liquid_bubble_streams.webp differ diff --git a/res_phone/drawable-nodpi/liquid_bubble_streams_small.webp b/res_phone/drawable-nodpi/liquid_bubble_streams_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..005319aee93dc07a51c2aff0e052d07db7da6177 Binary files /dev/null and b/res_phone/drawable-nodpi/liquid_bubble_streams_small.webp differ diff --git a/res_phone/drawable-nodpi/materials_fabric.webp b/res_phone/drawable-nodpi/materials_fabric.webp new file mode 100644 index 0000000000000000000000000000000000000000..ae1e108c25759c15099e8bbc370ee5169b054730 Binary files /dev/null and b/res_phone/drawable-nodpi/materials_fabric.webp differ diff --git a/res_phone/drawable-nodpi/materials_fabric_small.webp b/res_phone/drawable-nodpi/materials_fabric_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..98a7296d708ddbbf3edfc46dd1ecdcbcd31b7d42 Binary files /dev/null and b/res_phone/drawable-nodpi/materials_fabric_small.webp differ diff --git a/res_phone/drawable-nodpi/materials_paper_stripes.webp b/res_phone/drawable-nodpi/materials_paper_stripes.webp new file mode 100644 index 0000000000000000000000000000000000000000..7d7bbee6e021a02bd4588a960cac8282c3900862 Binary files /dev/null and b/res_phone/drawable-nodpi/materials_paper_stripes.webp differ diff --git a/res_phone/drawable-nodpi/materials_paper_stripes_small.webp b/res_phone/drawable-nodpi/materials_paper_stripes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..43aa2d08a3b4c92be346a810b60c34efe0d24b84 Binary files /dev/null and b/res_phone/drawable-nodpi/materials_paper_stripes_small.webp differ diff --git a/res_phone/drawable-nodpi/murena_blue.webp b/res_phone/drawable-nodpi/murena_blue.webp new file mode 100644 index 0000000000000000000000000000000000000000..4e3b60bf9d1a4b9d812eb5d6ae9714d74f8e96f0 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_blue.webp differ diff --git a/res_phone/drawable-nodpi/murena_blue_small.webp b/res_phone/drawable-nodpi/murena_blue_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..481973f669ca40b5c8492c3bd5308e3ebc845bbf Binary files /dev/null and b/res_phone/drawable-nodpi/murena_blue_small.webp differ diff --git a/res_phone/drawable-nodpi/murena_gray.webp b/res_phone/drawable-nodpi/murena_gray.webp new file mode 100644 index 0000000000000000000000000000000000000000..9c9a17f0c0fa49ef68921aa88cfe66a8c5f14961 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_gray.webp differ diff --git a/res_phone/drawable-nodpi/murena_gray_small.webp b/res_phone/drawable-nodpi/murena_gray_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..02fdc773da91e193680cbe8e313ce1c3f82f1e58 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_gray_small.webp differ diff --git a/res_phone/drawable-nodpi/murena_green.webp b/res_phone/drawable-nodpi/murena_green.webp new file mode 100644 index 0000000000000000000000000000000000000000..0beedf4312f141e77a1b6f395e03f716a71463d1 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_green.webp differ diff --git a/res_phone/drawable-nodpi/murena_green_small.webp b/res_phone/drawable-nodpi/murena_green_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..3491a3f13ba61fd9a170bf27f0b0e6ea2a0d91e0 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_green_small.webp differ diff --git a/res_phone/drawable-nodpi/murena_orange.webp b/res_phone/drawable-nodpi/murena_orange.webp new file mode 100644 index 0000000000000000000000000000000000000000..3eae7224cff008414e5c73b6a521c0b0fcefed0d Binary files /dev/null and b/res_phone/drawable-nodpi/murena_orange.webp differ diff --git a/res_phone/drawable-nodpi/murena_orange_small.webp b/res_phone/drawable-nodpi/murena_orange_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..f4110ee0eec766793b93e7a2fae14cebd5fcbc35 Binary files /dev/null and b/res_phone/drawable-nodpi/murena_orange_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_acqua.webp b/res_phone/drawable-nodpi/nature_acqua.webp new file mode 100644 index 0000000000000000000000000000000000000000..0961558936ba121d294d89d3814cdde50ee05088 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_acqua.webp differ diff --git a/res_phone/drawable-nodpi/nature_acqua_small.webp b/res_phone/drawable-nodpi/nature_acqua_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..07eb0e45bd58311ed5684373d374d63c7a7206d5 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_acqua_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_earth_and_rock.webp b/res_phone/drawable-nodpi/nature_earth_and_rock.webp new file mode 100644 index 0000000000000000000000000000000000000000..8488eec4ee45df1eeeea864f5cddf77b823959a8 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_earth_and_rock.webp differ diff --git a/res_phone/drawable-nodpi/nature_earth_and_rock_small.webp b/res_phone/drawable-nodpi/nature_earth_and_rock_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..7ed246f723caa97dce1428d5b8613b8b4ac3653b Binary files /dev/null and b/res_phone/drawable-nodpi/nature_earth_and_rock_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_green_leaf.webp b/res_phone/drawable-nodpi/nature_green_leaf.webp new file mode 100644 index 0000000000000000000000000000000000000000..0775f8f5d2c3161d598f9df6667a20ef0ea9b247 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_green_leaf.webp differ diff --git a/res_phone/drawable-nodpi/nature_green_leaf_small.webp b/res_phone/drawable-nodpi/nature_green_leaf_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..1672b4aed3dde5f4d8e937b0838e4a3956ba5ed5 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_green_leaf_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower.webp b/res_phone/drawable-nodpi/nature_orange_flower.webp new file mode 100644 index 0000000000000000000000000000000000000000..7b5b0b80cf06e0c96ba50b20201d7b761365db9b Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_1.webp b/res_phone/drawable-nodpi/nature_orange_flower_1.webp new file mode 100644 index 0000000000000000000000000000000000000000..6f647ec7cb9e4d7a081689efeb0a7bf22c5cf9a7 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_1.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_1_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_1_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6270e033d63e7e221f1172f54b9ae32cf111cef8 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_1_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_2.webp b/res_phone/drawable-nodpi/nature_orange_flower_2.webp new file mode 100644 index 0000000000000000000000000000000000000000..b74aa2c35f9739b97ffe84260a4cec482e10d050 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_2.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_2_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_2_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..14874e065880ede4fb2baaaaeb8dae814b0a7c8e Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_2_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_3.webp b/res_phone/drawable-nodpi/nature_orange_flower_3.webp new file mode 100644 index 0000000000000000000000000000000000000000..7873fd0bc37c0530dd00c085ee8b8e25ab86609e Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_3.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_3_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_3_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..b610abecf819d8ef2586d64272a6ff8cd1e868fd Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_3_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_4.webp b/res_phone/drawable-nodpi/nature_orange_flower_4.webp new file mode 100644 index 0000000000000000000000000000000000000000..8c7b17a787715a8e244711545aa24cee551e5141 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_4.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_4_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_4_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..47d736108c0c9c2fe2b93f80f6848f8de992c913 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_4_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_5.webp b/res_phone/drawable-nodpi/nature_orange_flower_5.webp new file mode 100644 index 0000000000000000000000000000000000000000..9f87192775b6f12273fcaf9414e87fe4cec68d4b Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_5.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_5_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_5_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..7562c3f2c835454f295323528b15289f856149d1 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_5_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_6.webp b/res_phone/drawable-nodpi/nature_orange_flower_6.webp new file mode 100644 index 0000000000000000000000000000000000000000..e8797f94be9d5ecb2aaea8f0b7b7fc891c19e40d Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_6.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_6_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_6_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..7bd9600f77c6c610e566379d07f885dc768d9487 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_6_small.webp differ diff --git a/res_phone/drawable-nodpi/nature_orange_flower_small.webp b/res_phone/drawable-nodpi/nature_orange_flower_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..321dd3a59113dd00d515e3af354f710711ed6636 Binary files /dev/null and b/res_phone/drawable-nodpi/nature_orange_flower_small.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_cosmic.webp b/res_phone/drawable-nodpi/otherworldly_cosmic.webp new file mode 100644 index 0000000000000000000000000000000000000000..24c2251ceae356b662825bb23154a9c5337a7740 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_cosmic.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_cosmic_small.webp b/res_phone/drawable-nodpi/otherworldly_cosmic_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6d4539590ba69881e7c48aa8cf1223686dc677c7 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_cosmic_small.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_ethereal_smokes.webp b/res_phone/drawable-nodpi/otherworldly_ethereal_smokes.webp new file mode 100644 index 0000000000000000000000000000000000000000..f47116a4c98f3f6f7e25a307933518ed89cd5fc0 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_ethereal_smokes.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_ethereal_smokes_small.webp b/res_phone/drawable-nodpi/otherworldly_ethereal_smokes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..c8c2cfd1121c2805caf15eaf03e295e134ea6c32 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_ethereal_smokes_small.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_mars.webp b/res_phone/drawable-nodpi/otherworldly_mars.webp new file mode 100644 index 0000000000000000000000000000000000000000..f9c1805266990f74eaa978418b5d150be3322d41 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_mars.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_mars_small.webp b/res_phone/drawable-nodpi/otherworldly_mars_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..87343bb5b95c34d5928281b29fdbd6fec38ea6a6 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_mars_small.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_saturn.webp b/res_phone/drawable-nodpi/otherworldly_saturn.webp new file mode 100644 index 0000000000000000000000000000000000000000..e4dc4aa01844e5f37119f90d08cab39611a2597b Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_saturn.webp differ diff --git a/res_phone/drawable-nodpi/otherworldly_saturn_small.webp b/res_phone/drawable-nodpi/otherworldly_saturn_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..d32542841eae00f56b8cc41636c97017006c91d6 Binary files /dev/null and b/res_phone/drawable-nodpi/otherworldly_saturn_small.webp differ diff --git a/res_phone/drawable-nodpi/patterns_country.webp b/res_phone/drawable-nodpi/patterns_country.webp new file mode 100644 index 0000000000000000000000000000000000000000..46e87277b8a88f1d098a714d1563617346ae70cf Binary files /dev/null and b/res_phone/drawable-nodpi/patterns_country.webp differ diff --git a/res_phone/drawable-nodpi/patterns_country_small.webp b/res_phone/drawable-nodpi/patterns_country_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..3d039a88df53f81b4ff776a6018e938622d1d1b5 Binary files /dev/null and b/res_phone/drawable-nodpi/patterns_country_small.webp differ diff --git a/res_phone/drawable-nodpi/patterns_desert.webp b/res_phone/drawable-nodpi/patterns_desert.webp new file mode 100644 index 0000000000000000000000000000000000000000..19df41530693f6c70f4e76060c4a627d879e3288 Binary files /dev/null and b/res_phone/drawable-nodpi/patterns_desert.webp differ diff --git a/res_phone/drawable-nodpi/patterns_desert_small.webp b/res_phone/drawable-nodpi/patterns_desert_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..50f042e950a9b07464af4e115f44aab5083c8649 Binary files /dev/null and b/res_phone/drawable-nodpi/patterns_desert_small.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_aurora.webp b/res_phone/drawable-nodpi/swoosh_aurora.webp new file mode 100644 index 0000000000000000000000000000000000000000..7fe8afa44a38c314a3a77126efa9dc8756dd18ce Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_aurora.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_aurora_small.webp b/res_phone/drawable-nodpi/swoosh_aurora_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..ee4a234a84c576d709819c24dd4667fcacf7cea0 Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_aurora_small.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_fabric.webp b/res_phone/drawable-nodpi/swoosh_fabric.webp new file mode 100644 index 0000000000000000000000000000000000000000..09bb44d0fb49313b8d77cba716eca437ad895064 Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_fabric.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_fabric_small.webp b/res_phone/drawable-nodpi/swoosh_fabric_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..a290a1c99179ab25f00997877f5a46e02954bb53 Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_fabric_small.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_paint.webp b/res_phone/drawable-nodpi/swoosh_paint.webp new file mode 100644 index 0000000000000000000000000000000000000000..f8bedcbd9892aa3783a9a3574f2da0d066a705d6 Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_paint.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_paint_small.webp b/res_phone/drawable-nodpi/swoosh_paint_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6b5fb6fd1a3d35309fbfdb32ecac6d8850b7558c Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_paint_small.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_waves.webp b/res_phone/drawable-nodpi/swoosh_waves.webp new file mode 100644 index 0000000000000000000000000000000000000000..d70f1da0577b9f4417a72ce525b103d29ab6cb4f Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_waves.webp differ diff --git a/res_phone/drawable-nodpi/swoosh_waves_small.webp b/res_phone/drawable-nodpi/swoosh_waves_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6690769b5cf140525da6ac2d648a722403e3bfc2 Binary files /dev/null and b/res_phone/drawable-nodpi/swoosh_waves_small.webp differ diff --git a/res_phone/drawable-nodpi/yellow_wallpaper.webp b/res_phone/drawable-nodpi/yellow_wallpaper.webp new file mode 100644 index 0000000000000000000000000000000000000000..e067df6373214f0722c2363be37be1cccd98bdfe Binary files /dev/null and b/res_phone/drawable-nodpi/yellow_wallpaper.webp differ diff --git a/res_phone/drawable-nodpi/yellow_wallpaper_small.webp b/res_phone/drawable-nodpi/yellow_wallpaper_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..e3b43b83d394421ca0c8005e5d7012f5d84b0c6c Binary files /dev/null and b/res_phone/drawable-nodpi/yellow_wallpaper_small.webp differ diff --git a/res_phone/values/arrays.xml b/res_phone/values/arrays.xml new file mode 100644 index 0000000000000000000000000000000000000000..a6a61e631d3dd92b94e4724589543e5e80e87185 --- /dev/null +++ b/res_phone/values/arrays.xml @@ -0,0 +1,44 @@ + + + + + artistic_bauhaus + artistic_brush_strokes + geometric_wood_maze + geometric_wood + geometries_crystal + geometries_fractals + liquid_bubble_streams + liquid_bubble + materials_fabric + materials_paper_stripes + murena_blue + murena_gray + murena_green + murena_orange + nature_acqua + nature_earth_and_rock + nature_green_leaf + nature_orange_flower + nature_orange_flower_1 + nature_orange_flower_2 + nature_orange_flower_3 + nature_orange_flower_4 + nature_orange_flower_5 + nature_orange_flower_6 + otherworldly_cosmic + otherworldly_ethereal_smokes + otherworldly_mars + otherworldly_saturn + patterns_country + patterns_desert + swoosh_aurora + swoosh_fabric + swoosh_paint + swoosh_waves + yellow_wallpaper + + diff --git a/res_tablet/drawable-nodpi/abstract_blue_streams.webp b/res_tablet/drawable-nodpi/abstract_blue_streams.webp new file mode 100644 index 0000000000000000000000000000000000000000..8373dc492ca420f9802f6e68e8b65209ab4f2211 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_blue_streams.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_blue_streams_small.webp b/res_tablet/drawable-nodpi/abstract_blue_streams_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..9121c6fe0a64b11ca79dc392536fd91a8529d81b Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_blue_streams_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_flow.webp b/res_tablet/drawable-nodpi/abstract_flow.webp new file mode 100644 index 0000000000000000000000000000000000000000..53c94497f87e368a5ae5f3115187fe4cf420b2c0 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_flow.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_flow_small.webp b/res_tablet/drawable-nodpi/abstract_flow_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..e5151ae40783d6eada83c2532db84885e7894a40 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_flow_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_gray.webp b/res_tablet/drawable-nodpi/abstract_gray.webp new file mode 100644 index 0000000000000000000000000000000000000000..2a78854d6f4033bbbc27af35a7dfc7b33cd7926b Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_gray.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_gray_small.webp b/res_tablet/drawable-nodpi/abstract_gray_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..96a333e2016266a427a1ae0604e39b7d0d380e0e Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_gray_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_green.webp b/res_tablet/drawable-nodpi/abstract_green.webp new file mode 100644 index 0000000000000000000000000000000000000000..fa1e03094ca6ae4bf7e5d903a3508115126fd764 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_green.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_green_small.webp b/res_tablet/drawable-nodpi/abstract_green_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..a85a64424f82800990fe0c5aea4d8bad176df738 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_green_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_orange.webp b/res_tablet/drawable-nodpi/abstract_orange.webp new file mode 100644 index 0000000000000000000000000000000000000000..fa6c28ae29ad81fa10c175fb615b3f5de18874d3 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_orange.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_orange_flow.webp b/res_tablet/drawable-nodpi/abstract_orange_flow.webp new file mode 100644 index 0000000000000000000000000000000000000000..9170c8f144a3f1e034528ea48815ec707b528c04 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_orange_flow.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_orange_flow_small.webp b/res_tablet/drawable-nodpi/abstract_orange_flow_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..a473b6416ede8301041d50bc692a1783c711e690 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_orange_flow_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_orange_small.webp b/res_tablet/drawable-nodpi/abstract_orange_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..1ebd78dcc34d44cc1546f0e1cb9d2e3592b55ab4 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_orange_small.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_yellow.webp b/res_tablet/drawable-nodpi/abstract_yellow.webp new file mode 100644 index 0000000000000000000000000000000000000000..88f9495ee9342cf94e9ab8036f579ef940d90879 Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_yellow.webp differ diff --git a/res_tablet/drawable-nodpi/abstract_yellow_small.webp b/res_tablet/drawable-nodpi/abstract_yellow_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..eea0cb711af4b10de165a30f764e19059d5e2cac Binary files /dev/null and b/res_tablet/drawable-nodpi/abstract_yellow_small.webp differ diff --git a/res_tablet/drawable-nodpi/artistic_bauhaus.webp b/res_tablet/drawable-nodpi/artistic_bauhaus.webp new file mode 100644 index 0000000000000000000000000000000000000000..9531f0720a7fbb2cc1b7c2ca18188ccd8e486a5d Binary files /dev/null and b/res_tablet/drawable-nodpi/artistic_bauhaus.webp differ diff --git a/res_tablet/drawable-nodpi/artistic_bauhaus_small.webp b/res_tablet/drawable-nodpi/artistic_bauhaus_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..1b8e7135306277aa7c1389503c63d2f2912e7b2e Binary files /dev/null and b/res_tablet/drawable-nodpi/artistic_bauhaus_small.webp differ diff --git a/res_tablet/drawable-nodpi/artistic_brush_strokes.webp b/res_tablet/drawable-nodpi/artistic_brush_strokes.webp new file mode 100644 index 0000000000000000000000000000000000000000..703b869a423fbe6bc5c88048179afb7e49f16d21 Binary files /dev/null and b/res_tablet/drawable-nodpi/artistic_brush_strokes.webp differ diff --git a/res_tablet/drawable-nodpi/artistic_brush_strokes_small.webp b/res_tablet/drawable-nodpi/artistic_brush_strokes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..492f9e2369b76a3955b4bfd2ba0c49765d30c832 Binary files /dev/null and b/res_tablet/drawable-nodpi/artistic_brush_strokes_small.webp differ diff --git a/res_tablet/drawable-nodpi/colors_blue_dunes.webp b/res_tablet/drawable-nodpi/colors_blue_dunes.webp new file mode 100644 index 0000000000000000000000000000000000000000..9c70d718c32116aa9a6c0eeb9140e9a55f0eb060 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_blue_dunes.webp differ diff --git a/res_tablet/drawable-nodpi/colors_blue_dunes_small.webp b/res_tablet/drawable-nodpi/colors_blue_dunes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..bf45260c3b179af17e2e7d94412bddaf56a69b85 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_blue_dunes_small.webp differ diff --git a/res_tablet/drawable-nodpi/colors_orange_dunes.webp b/res_tablet/drawable-nodpi/colors_orange_dunes.webp new file mode 100644 index 0000000000000000000000000000000000000000..47fa53a2d50247aee5bab5906e826ec148430a68 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_orange_dunes.webp differ diff --git a/res_tablet/drawable-nodpi/colors_orange_dunes_small.webp b/res_tablet/drawable-nodpi/colors_orange_dunes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..b8f189de3dc361545f6e11f1b2dbeeb83ccafdb8 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_orange_dunes_small.webp differ diff --git a/res_tablet/drawable-nodpi/colors_orange_waves.webp b/res_tablet/drawable-nodpi/colors_orange_waves.webp new file mode 100644 index 0000000000000000000000000000000000000000..221993a595b0a43e92cb48fcb2d32d303f371517 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_orange_waves.webp differ diff --git a/res_tablet/drawable-nodpi/colors_orange_waves_small.webp b/res_tablet/drawable-nodpi/colors_orange_waves_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..4c4f3a0ae8e6db66b3c2e9b02114d162826d4d7a Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_orange_waves_small.webp differ diff --git a/res_tablet/drawable-nodpi/colors_purple_dunes.webp b/res_tablet/drawable-nodpi/colors_purple_dunes.webp new file mode 100644 index 0000000000000000000000000000000000000000..02e7cddd0f522dd618d59d801443e39c7501075c Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_purple_dunes.webp differ diff --git a/res_tablet/drawable-nodpi/colors_purple_dunes_small.webp b/res_tablet/drawable-nodpi/colors_purple_dunes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..7a222c078b75b25e7e0bc6c3aa2c5644ddd0cd45 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_purple_dunes_small.webp differ diff --git a/res_tablet/drawable-nodpi/colors_rainbow_waves.webp b/res_tablet/drawable-nodpi/colors_rainbow_waves.webp new file mode 100644 index 0000000000000000000000000000000000000000..e46e8ed5a7c9179b493d71fcb88bab282215e7fe Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_rainbow_waves.webp differ diff --git a/res_tablet/drawable-nodpi/colors_rainbow_waves_small.webp b/res_tablet/drawable-nodpi/colors_rainbow_waves_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..f17d4d2100353691dab277e5b1677fbf93207164 Binary files /dev/null and b/res_tablet/drawable-nodpi/colors_rainbow_waves_small.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_crystal.webp b/res_tablet/drawable-nodpi/geometry_crystal.webp new file mode 100644 index 0000000000000000000000000000000000000000..1a74d0eead49375d868770d867008aaa0edcd57c Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_crystal.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_crystal_small.webp b/res_tablet/drawable-nodpi/geometry_crystal_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..258a93545860423b29e4f0010aee39fccbbe2478 Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_crystal_small.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_crystals.webp b/res_tablet/drawable-nodpi/geometry_crystals.webp new file mode 100644 index 0000000000000000000000000000000000000000..3ceea3d060e6582970b9b2a4956f8166c8d95d3f Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_crystals.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_crystals_small.webp b/res_tablet/drawable-nodpi/geometry_crystals_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..0e7407c8d9b7b194ac6ae2cac5f3e578631dbc18 Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_crystals_small.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_wood_maze.webp b/res_tablet/drawable-nodpi/geometry_wood_maze.webp new file mode 100644 index 0000000000000000000000000000000000000000..3cd32ac557d3829ad29d58c8633b7d9e66a4fece Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_wood_maze.webp differ diff --git a/res_tablet/drawable-nodpi/geometry_wood_maze_small.webp b/res_tablet/drawable-nodpi/geometry_wood_maze_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..88f9e44abe7121efbdcf75c85432f15bc217fa5e Binary files /dev/null and b/res_tablet/drawable-nodpi/geometry_wood_maze_small.webp differ diff --git a/res_tablet/drawable-nodpi/geomety_wood.webp b/res_tablet/drawable-nodpi/geomety_wood.webp new file mode 100644 index 0000000000000000000000000000000000000000..b5a54b77e04bbaf94f7898cf5e3535b3d6fa8f1b Binary files /dev/null and b/res_tablet/drawable-nodpi/geomety_wood.webp differ diff --git a/res_tablet/drawable-nodpi/geomety_wood_small.webp b/res_tablet/drawable-nodpi/geomety_wood_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..3a7dbcb4c894febd1111b0003634a4ff9fcfd1c6 Binary files /dev/null and b/res_tablet/drawable-nodpi/geomety_wood_small.webp differ diff --git a/res_tablet/drawable-nodpi/liquid_bubble_streams.webp b/res_tablet/drawable-nodpi/liquid_bubble_streams.webp new file mode 100644 index 0000000000000000000000000000000000000000..d27cb0f55e213d8700e2ded571f9b9ff501300bf Binary files /dev/null and b/res_tablet/drawable-nodpi/liquid_bubble_streams.webp differ diff --git a/res_tablet/drawable-nodpi/liquid_bubble_streams_small.webp b/res_tablet/drawable-nodpi/liquid_bubble_streams_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..203abf9e214ec9ce185828bbcb96a736e9d2638f Binary files /dev/null and b/res_tablet/drawable-nodpi/liquid_bubble_streams_small.webp differ diff --git a/res_tablet/drawable-nodpi/materials_fabric.webp b/res_tablet/drawable-nodpi/materials_fabric.webp new file mode 100644 index 0000000000000000000000000000000000000000..04bc20aba0265b191f9f3b78ad0719628fad1a12 Binary files /dev/null and b/res_tablet/drawable-nodpi/materials_fabric.webp differ diff --git a/res_tablet/drawable-nodpi/materials_fabric_small.webp b/res_tablet/drawable-nodpi/materials_fabric_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..2bbca00d20dbddc2026b271a410724b1078e58a2 Binary files /dev/null and b/res_tablet/drawable-nodpi/materials_fabric_small.webp differ diff --git a/res_tablet/drawable-nodpi/materials_paper_stripers.webp b/res_tablet/drawable-nodpi/materials_paper_stripers.webp new file mode 100644 index 0000000000000000000000000000000000000000..eefab9100aac7a55cdbf89cd8d0dd3fc5c84c69f Binary files /dev/null and b/res_tablet/drawable-nodpi/materials_paper_stripers.webp differ diff --git a/res_tablet/drawable-nodpi/materials_paper_stripers_small.webp b/res_tablet/drawable-nodpi/materials_paper_stripers_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..c8adaadb3dde4605617b37dcf030191714746c1a Binary files /dev/null and b/res_tablet/drawable-nodpi/materials_paper_stripers_small.webp differ diff --git a/res_tablet/drawable-nodpi/nature_leaf.webp b/res_tablet/drawable-nodpi/nature_leaf.webp new file mode 100644 index 0000000000000000000000000000000000000000..f515b75630470a23b2bcf3be3a5c7788a36913a5 Binary files /dev/null and b/res_tablet/drawable-nodpi/nature_leaf.webp differ diff --git a/res_tablet/drawable-nodpi/nature_leaf_small.webp b/res_tablet/drawable-nodpi/nature_leaf_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..8748d57a2ff538d266f1584b0e6d404e3e8e29cd Binary files /dev/null and b/res_tablet/drawable-nodpi/nature_leaf_small.webp differ diff --git a/res_tablet/drawable-nodpi/otherwordly_cosmic.webp b/res_tablet/drawable-nodpi/otherwordly_cosmic.webp new file mode 100644 index 0000000000000000000000000000000000000000..32affe172d3c344db7da9adc278214d926951cc3 Binary files /dev/null and b/res_tablet/drawable-nodpi/otherwordly_cosmic.webp differ diff --git a/res_tablet/drawable-nodpi/otherwordly_cosmic_small.webp b/res_tablet/drawable-nodpi/otherwordly_cosmic_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..95a086aa2acc3637c69b86f9467fff46683a4efd Binary files /dev/null and b/res_tablet/drawable-nodpi/otherwordly_cosmic_small.webp differ diff --git a/res_tablet/drawable-nodpi/otherworldly_martian_dunes.webp b/res_tablet/drawable-nodpi/otherworldly_martian_dunes.webp new file mode 100644 index 0000000000000000000000000000000000000000..e89c1843b260e9607a7352aa60724dbc68ecd79a Binary files /dev/null and b/res_tablet/drawable-nodpi/otherworldly_martian_dunes.webp differ diff --git a/res_tablet/drawable-nodpi/otherworldly_martian_dunes_small.webp b/res_tablet/drawable-nodpi/otherworldly_martian_dunes_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..e5de1f64bfed709f850a32fc31296843a46549fd Binary files /dev/null and b/res_tablet/drawable-nodpi/otherworldly_martian_dunes_small.webp differ diff --git a/res_tablet/drawable-nodpi/otherworldly_sky.webp b/res_tablet/drawable-nodpi/otherworldly_sky.webp new file mode 100644 index 0000000000000000000000000000000000000000..9d20fdc237f919b2f92f94949375a2e760cece22 Binary files /dev/null and b/res_tablet/drawable-nodpi/otherworldly_sky.webp differ diff --git a/res_tablet/drawable-nodpi/otherworldly_sky_small.webp b/res_tablet/drawable-nodpi/otherworldly_sky_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..f0163ffc54a9b6a2d77a8e9beedc258cbc996d89 Binary files /dev/null and b/res_tablet/drawable-nodpi/otherworldly_sky_small.webp differ diff --git a/res_tablet/drawable-nodpi/patterns_country.webp b/res_tablet/drawable-nodpi/patterns_country.webp new file mode 100644 index 0000000000000000000000000000000000000000..52c0f6fc2f8995ae698121501d0f557ab10afb46 Binary files /dev/null and b/res_tablet/drawable-nodpi/patterns_country.webp differ diff --git a/res_tablet/drawable-nodpi/patterns_country_small.webp b/res_tablet/drawable-nodpi/patterns_country_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..2aef928e2f7575116683fe3973f51adc098e5191 Binary files /dev/null and b/res_tablet/drawable-nodpi/patterns_country_small.webp differ diff --git a/res_tablet/drawable-nodpi/patterns_desert.webp b/res_tablet/drawable-nodpi/patterns_desert.webp new file mode 100644 index 0000000000000000000000000000000000000000..dd4501f5b327e7397613ada07a5b5c72ee01ba81 Binary files /dev/null and b/res_tablet/drawable-nodpi/patterns_desert.webp differ diff --git a/res_tablet/drawable-nodpi/patterns_desert_small.webp b/res_tablet/drawable-nodpi/patterns_desert_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..47ddf49826bc883bb503d5d8847df437ee0e999d Binary files /dev/null and b/res_tablet/drawable-nodpi/patterns_desert_small.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_aurora.webp b/res_tablet/drawable-nodpi/swoosh_aurora.webp new file mode 100644 index 0000000000000000000000000000000000000000..f844fabb3c0fcbb67cf4eeb26b38664a2f9f9e1c Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_aurora.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_aurora_small.webp b/res_tablet/drawable-nodpi/swoosh_aurora_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..12ca72a04f98fb91298814e5335116b45aecda9a Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_aurora_small.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_ethereal.webp b/res_tablet/drawable-nodpi/swoosh_ethereal.webp new file mode 100644 index 0000000000000000000000000000000000000000..1c7294b146f272985e0521c69651a49875162082 Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_ethereal.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_ethereal_small.webp b/res_tablet/drawable-nodpi/swoosh_ethereal_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..54f973bf6f74517eae6aff9bda3307a6f3b31114 Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_ethereal_small.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_paint.webp b/res_tablet/drawable-nodpi/swoosh_paint.webp new file mode 100644 index 0000000000000000000000000000000000000000..aed32497a086252d2c02e138003e94606b5a1ca6 Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_paint.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_paint_small.webp b/res_tablet/drawable-nodpi/swoosh_paint_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..94822f54e5dfdb055c0a4471b5bb38568f513fad Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_paint_small.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_phoenix.webp b/res_tablet/drawable-nodpi/swoosh_phoenix.webp new file mode 100644 index 0000000000000000000000000000000000000000..dabee491522413e77be6b357679a5e9ef4be105d Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_phoenix.webp differ diff --git a/res_tablet/drawable-nodpi/swoosh_phoenix_small.webp b/res_tablet/drawable-nodpi/swoosh_phoenix_small.webp new file mode 100644 index 0000000000000000000000000000000000000000..b70a647f05de55e8f4d1d112527debfafca9f1b6 Binary files /dev/null and b/res_tablet/drawable-nodpi/swoosh_phoenix_small.webp differ diff --git a/res_tablet/values/arrays.xml b/res_tablet/values/arrays.xml new file mode 100644 index 0000000000000000000000000000000000000000..c29b99b692152298359a3e69f48598e8d3680cf5 --- /dev/null +++ b/res_tablet/values/arrays.xml @@ -0,0 +1,40 @@ + + + + + abstract_blue_streams + abstract_flow + abstract_gray + abstract_green + abstract_orange + abstract_orange_flow + abstract_yellow + artistic_bauhaus + artistic_brush_strokes + colors_blue_dunes + colors_orange_dunes + colors_orange_waves + colors_purple_dunes + colors_rainbow_waves + geometry_crystal + geometry_crystals + geometry_wood_maze + geomety_wood + liquid_bubble_streams + materials_fabric + materials_paper_stripers + nature_leaf + otherwordly_cosmic + otherworldly_martian_dunes + otherworldly_sky + patterns_country + patterns_desert + swoosh_aurora + swoosh_ethereal + swoosh_paint + swoosh_phoenix + +