From 41ab5c0ead382844964e107ceb0c8c89dae5d678 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sun, 16 Nov 2025 14:51:56 +0100 Subject: [PATCH] Android: Ship Sys/Resources/ We were previously excluding this folder from Android builds because it didn't contain any files that were used on Android. However, we now have an OSD font file that we do want to use on Android, and there's also a few PNG files that will be needed by the RetroAchievements integration. In terms of file size, this is what gets added: OSD font: 48.1 KiB RetroAchievements graphics: 3.5 KiB Unused graphics: 116.8 KiB We're still excluding Sys/Themes/, which is 1.1 MiB and entirely unused. --- Source/Android/jni/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Android/jni/CMakeLists.txt b/Source/Android/jni/CMakeLists.txt index be200affa9b..c6d542bf08c 100644 --- a/Source/Android/jni/CMakeLists.txt +++ b/Source/Android/jni/CMakeLists.txt @@ -66,7 +66,6 @@ file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/Sys/) file(COPY ${CMAKE_SOURCE_DIR}/Data/Sys DESTINATION ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/) # Delete folders that aren't used by the Android version of Dolphin -file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/Sys/Resources/) file(REMOVE_RECURSE ${CMAKE_SOURCE_DIR}/Source/Android/app/src/main/assets/Sys/Themes/) set(CPACK_PACKAGE_EXECUTABLES ${CPACK_PACKAGE_EXECUTABLES} main)