LeviModHub is the external mod catalog used by LeviLauncher on Android.
Mods can still use the old manual catalog format. Mods can also use automatic updates through GitHub Releases or through a stable levimod.json URL.
For mods that publish files through GitHub Releases, add a levimod.json file to the root of the mod repository.
A working example can be found here:
QYCottage/BedrockTools - levimod.json
Example:
{
"schema_version": 1,
"id": "your-mod-id",
"version": "1.0.0",
"minecraft_versions": [
"1.26.45.1"
],
"info": {
"name": "Your Mod",
"author": "Your Name",
"description": "A short description of your mod.",
"homepage_url": "https://github.com/you/your-mod",
"icon": "assets/icon.png",
"tags": [
"Utility"
]
},
"release_assets": {
"include": [
"*.levipack",
"*.so"
],
"labels": {
"YourMod.levipack": "LeviPack",
"libYourMod.so": "Native library"
}
}
}Then add this to LeviModHub:
mods/your-mod-id/mod.json
{
"id": "your-mod-id",
"provider": "github",
"repository": "you/your-mod",
"metadata_path": "levimod.json",
"include_prereleases": false,
"max_releases": 20,
"enabled": true
}After the mod is accepted, future GitHub releases are picked up automatically.
Mods that use MediaFire, a website, a CDN, or another download service can also update automatically.
The important part is that the levimod.json URL stays the same. The actual download link inside it can change every release.
A simple way to do this is to keep levimod.json in the mod's GitHub repository, even if the mod file itself is hosted somewhere else.
Example:
{
"schema_version": 1,
"id": "your-mod-id",
"version": "2.0.0",
"minecraft_versions": [
"1.26.45.1"
],
"published_at": "2026-09-13T00:00:00Z",
"info": {
"name": "Your Mod",
"author": "Your Name",
"description": "A short description of your mod.",
"homepage_url": "https://github.com/you/your-mod",
"tags": [
"Utility"
]
},
"download": {
"type": "browser",
"url": "https://example.com/your-new-download-link"
}
}Then add this to LeviModHub:
{
"id": "your-mod-id",
"provider": "url",
"metadata_url": "https://raw.githubusercontent.com/you/your-mod/main/levimod.json",
"max_releases": 20,
"enabled": true
}For a page such as MediaFire, use:
"type": "browser"For a direct .levipack, .so, or .zip URL, use:
"download": {
"type": "direct",
"url": "https://example.com/YourMod.levipack"
}If a direct URL does not end with the real file name, add name:
"download": {
"type": "direct",
"url": "https://example.com/download?id=123",
"name": "YourMod.levipack"
}When releasing a new version, only update the mod's own levimod.json:
versionminecraft_versionspublished_atdownload.url
LeviModHub checks the metadata automatically. No new LeviModHub pull request is needed for normal updates.
Previously published versions are kept from the existing catalog, up to max_releases.
Use an exact Minecraft version:
"minecraft_versions": [
"1.26.45.1"
]Multiple versions can be listed:
"minecraft_versions": [
"1.26.45.1",
"1.26.50.2"
]X can be used for a compatible range:
"minecraft_versions": [
"1.26.5X.X"
]>= can be used when a mod supports one version and every newer version:
"minecraft_versions": [
">=1.26.45.1"
]The old manual mod.json format is still supported.
Developers can move to either provider: "github" or provider: "url" when they are ready.