[frontend_common] Fix unnecessary includes for non android
All checks were successful
eden-license / license-header (pull_request) Successful in 16s

Signed-off-by: Aleksandr Popovich <popovich@eden-emu.dev>
This commit is contained in:
Aleksandr Popovich 2025-07-12 00:14:04 -04:00
parent a360f67fad
commit ae4807bc77
Signed by: AleksandrPopovich
GPG key ID: B2008BBDA7954884

View file

@ -3,9 +3,6 @@
#include "firmware_manager.h"
#include <filesystem>
#include <jni.h>
#include <common/android/id_cache.h>
#include <common/android/android_common.h>
#include <common/fs/fs_paths.h>
#include "common/fs/fs.h"
@ -16,6 +13,12 @@
#include "core/crypto/key_manager.h"
#include "frontend_common/content_manager.h"
#ifdef ANDROID
#include <jni.h>
#include <common/android/id_cache.h>
#include <common/android/android_common.h>
#endif
FirmwareManager::KeyInstallResult
FirmwareManager::InstallKeys(std::string location, std::string extension) {
LOG_INFO(Frontend, "Installing key files from {}", location);