If a mod is not listed in the Nebula Mod Store, you can import it directly from a file on your device. Nebula accepts raw DLL files and ZIP-based NPKG packages, validates what it can, and copies the contents into the active profile’s plugins folder. Because manual imports skip the store’s curation process, you are responsible for confirming that any file you import is genuinely compatible with Android before using it.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Nebula-Modmakers/Nebula-Launcher/llms.txt
Use this file to discover all available pages before exploring further.
Supported formats
Nebula supports two file types for manual import:-
DLL files (
.dll) — copied directly into the root of the active profile’splugins/folder. No additional validation beyond what the file system allows is performed. The DLL must be a valid ARM64 IL2CPP assembly or it will fail to load at runtime. -
NPKG files (
.npkgor.zip) — ZIP archives that contain amanifest.jsonalongside apayload/directory. Nebula reads and validates the manifest before extracting files. NPKG packages must declare their platform targets, file list, and SPDX licenses. All individual files are SHA-256 verified during extraction. File destinations must stay inside theplugins/directory.
How to import
Tap Import on the main screen
On the main screen, tap the Import button (or the upload icon). This opens Nebula’s file picker.
Select a file
Navigate to the
.dll, .npkg, or .zip file you want to install and tap it to select it.Nebula validates and copies the file
For DLL files, Nebula copies the file directly into the active profile’s plugin folder. For NPKG/ZIP packages, Nebula reads the manifest, checks file hashes, and extracts the payload into the active profile. If validation fails, no files are written.
Compatibility requirements
For a mod to work correctly in Nebula, it must be built to support all of the following targets simultaneously:| Requirement | Required value |
|---|---|
| Operating system | Android |
| Architecture | ARM64 (arm64-v8a) |
| Runtime | IL2CPP |
| Mod loader | FusionCore (BepInEx Fusion) |
| Among Us version | 2026.6.5 (version code 7045, in-game 17.4a) |