Disabled the application updater when building for Android

This commit is contained in:
Leon Styhre 2023-12-08 17:25:38 +01:00
parent a3979c19a2
commit 7d1e7d95e9

View file

@ -1,6 +1,6 @@
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
# #
# EmulationStation Desktop Edition # ES-DE
# CMakeLists.txt # CMakeLists.txt
# #
# Main CMake configuration file. # Main CMake configuration file.
@ -359,7 +359,7 @@ if(VIDEO_HW_DECODING)
message("-- Building with FFmpeg HW decoding") message("-- Building with FFmpeg HW decoding")
endif() endif()
if(AUR_BUILD OR FLATPAK_BUILD OR RETRODECK OR RPI) if(AUR_BUILD OR FLATPAK_BUILD OR RETRODECK OR RPI OR ANDROID)
set(APPLICATION_UPDATER OFF) set(APPLICATION_UPDATER OFF)
endif() endif()