📁 Where Mods Stored When Using LemonLoader on Android?

LemonLoader brings seamless Unity modding to Android, especially for standalone VR headsets like the Meta Quest series. But modding on Android isn’t the same as modding on PC—Android’s sandboxing and file structure introduce unique challenges. This guide explains exactly where your mods should go when using LemonLoader, why that location matters, and how to access it reliably.


📱 Understanding Android’s File System & Sandboxing

Android apps operate in a sandboxed environment. Each app is isolated from others and has its own internal storage path, generally inaccessible to other apps unless permissions are granted.

When a game is installed, its core files are locked away in system folders. However, it also gets a writable directory at:

bash - /Android/data/[package_name]/files/

LemonLoader takes advantage of this sandbox-compliant path to store and load mods.


📂 Official LemonLoader Mod Folder Location

When a Unity-based game is patched using LemonLoader, the game becomes capable of loading mods from:

bash - /sdcard/Android/data/[game_package_name]/files/Mods/

For example, if you’re modding a game with the package com.example.mygame, your mods go here:

swift - /sdcard/Android/data/com.example.mygame/files/Mods/

This is the only supported and secure location for placing LemonLoader mods.


📦 Folder Breakdown

Folder PathDescription
/Android/data/Default storage for app-specific data.
/com.example.game/The unique package ID for the game.
/files/General-purpose storage for the app.
/Mods/This is where you put your .dll mod files (ARM-compatible).

🧠 Why This Location?

  • ✔ Sandboxing Compliance: Mods run within the game’s sandbox.
  • ✔ No Extra Permissions Needed: The game can read/write its own directory.
  • ✔ Familiar Structure: Mirrors MelonLoader’s PC setup, aiding mod developers.

📁 What Goes in the Mods Folder?

Primarily, your ARM-compiled C# mod .dll files.

Mods may also generate or require supporting folders:

FolderPurpose
Plugins/Optional, used for supporting frameworks or libraries.
UserData/Stores mod configs, settings, or data (.json, .cfg, etc.).
Custom FoldersSome mods create their own folders for assets, textures, or external data.

Note: Follow any specific folder instructions from the mod developer.


🛠️ Accessing the Mods Folder on Meta Quest

🖥️ Option 1: SideQuest (Recommended)

  1. Install SideQuest: https://sidequestvr.com
  2. Enable Developer Mode on your Meta Quest and connect via USB-C.
  3. Launch SideQuest, click the folder icon to open the file browser.
  4. Navigate to: swiftCopyEditAndroid/data/com.example.mygame/files/Mods/
  5. Drag & drop your .dll mod files here.

💻 Option 2: ADB (Advanced Users)

  1. Connect your Quest and run: bashCopyEditadb shell cd /sdcard/Android/data/com.example.mygame/files/Mods/ adb push myMod.dll .

🕶️ Option 3: In-Headset File Explorer

  1. Install CX File Explorer via SideQuest.
  2. Open it from “Unknown Sources” in your headset.
  3. Navigate to: cssCopyEditMain Storage > Android > data > com.example.mygame > files > Mods

You can now move mod files directly inside the headset.


⚠️ Important Notes & Troubleshooting

TipDetails
Case SensitivityAndroid filenames are case-sensitive. Use exact casing (Mods, not mods).
.dll CompatibilityOnly use .dll files compiled for Android (ARM). PC MelonLoader mods will NOT work.
First Launch WaitFirst launch after patching may take 5–20 minutes—this is normal.
Post-Update Re-PatchingIf your game updates, re-patch with LemonLoader and check for mod updates.
Unknown SourcesPatched games show up under “Unknown Sources” in your app library.
Read Mod DocsAlways follow mod-specific install instructions for best results.

✅ Summary

If you’re using LemonLoader, your modding journey begins at:

bash - /sdcard/Android/data/[game_package_name]/files/Mods/

With tools like SideQuest, ADB, or CX File Explorer, you can fully manage your mods and elevate your VR experience on Meta Quest and other Android-based platforms.

🔗 Visit LemonLoader.com for official downloads, documentation, and modding support.

Leave a Comment