Optimize Android DEX/ART compilations dynamically based on your device hardware.
DexForge is a root module that dynamically optimizes Android's DEX/ART compilations. It profiles your device memory and Android version to select the best compiler filter, improving system fluidity without overloading lower-tier hardware.
- Tailored Performance: Automatically selects the best compiler filter (
speed,speed-profile, orquicken) based on your device's RAM capacity. - Safety Guards: Actively checks battery level and storage space before running to prevent errors.
- Interactive Cache Reset: Lets you optionally purge compilation caches before optimization to start fresh.
| Requirement | Details |
|---|---|
| Android | 7.0+ (API 24+) |
| Storage | Minimum 512MB free space on /data partition |
| Battery | Minimum 15% charge capacity (waived if actively charging) |
| Root | Magisk v20.4+, KernelSU, or APatch |
- Install the module ZIP via your root manager's Modules tab (Magisk, KernelSU, or APatch).
- Trigger the compilation run from your root manager's Action section.
- Reboot your device to fully apply the runtime compilation layout.
When you launch the DexForge action script, you will be prompted via physical buttons:
- Press Volume UP to clear compilation caches and perform a clean reforge.
- Press Volume DOWN (or wait 10 seconds) to compile existing states incrementally.
Audits the module compiler output without performing actual filesystem writes (requires root shell):
su
/data/adb/modules/DexForge/action.sh --dry-runflowchart TD
Start([Start: Flash ZIP Module]) --> Install[1. Extract action.sh & Assets]
Install --> Setup[2. Register Action in Root Manager]
Setup --> Trigger[3. Trigger action.sh via Action Button]
Trigger --> EnvCheck[4. Profile RAM, SDK, Storage & Battery]
EnvCheck --> Verification{Validate Constraints?}
Verification -- Fail --> Abort[Abort: Safe System Shutdown]
Verification -- Pass --> VolumePrompt{Volume UP pressed within 10s?}
VolumePrompt -- Yes --> CacheReset[Enable Compiler Cache Reset]
VolumePrompt -- No / Timeout --> CompileOnly[Disable Cache Reset]
CacheReset --> DeviceTier{Classify RAM Tier?}
CompileOnly --> DeviceTier
DeviceTier -- Flagship --> Bulk[Run speed bulk compile -a]
DeviceTier -- Mid / Entry --> Scan[Scan User-Installed Apps -3]
Scan --> ProcessApps[Compile Apps One-by-One with Progress %]
Bulk --> Output[Generate dexforge.log & Completion Summary]
ProcessApps --> Output
Output --> Finish([Finish: Reboot Recommended])
%% Custom Styles and Colors (Ultra-Muted Slate Theme)
classDef startEnd fill:#1b2c24,stroke:#34d399,stroke-width:1.5px,color:#e6f4ea;
classDef fail fill:#2c1b1b,stroke:#f87171,stroke-width:1.5px,color:#fce8e6;
classDef decision fill:#2d2216,stroke:#fbbf24,stroke-width:1.5px,color:#fef3c7;
classDef process fill:#1e293b,stroke:#475569,stroke-width:1px,color:#f1f5f9;
class Start,Finish startEnd;
class Abort fail;
class Verification,VolumePrompt,DeviceTier decision;
class Install,Setup,Trigger,EnvCheck,CacheReset,CompileOnly,Bulk,Scan,ProcessApps,Output process;
- Developer: dyokism
- License: MIT