diff --git a/src/common/fs/path_util.cpp b/src/common/fs/path_util.cpp
index defa3e9181..ca755b053f 100644
--- a/src/common/fs/path_util.cpp
+++ b/src/common/fs/path_util.cpp
@@ -95,6 +95,13 @@ private:
 
         yuzu_path_cache = yuzu_path / CACHE_DIR;
         yuzu_path_config = yuzu_path / CONFIG_DIR;
+#elif ANDROID
+        // On Android internal storage is mounted as "/sdcard"
+        if (Exists("/sdcard")) {
+            yuzu_path = "/sdcard/yuzu-emu";
+            yuzu_path_cache = yuzu_path / CACHE_DIR;
+            yuzu_path_config = yuzu_path / CONFIG_DIR;
+        }
 #else
         yuzu_path = GetCurrentDir() / PORTABLE_DIR;