SpoofMyDevice 2.0 is an Xposed module and companion app for building, saving, and applying spoofed Android device profiles to selected apps.
The companion UI is written entirely in Jetpack Compose and uses Material 3 Expressive components, a Tonal Spot palette, and the 2025 Material color specification.
- Reusable preset-based and fully editable custom profiles
- Default Profile support for automatic spoofing of all Xposed-scoped apps without per-app assignment
- Independent app-to-profile assignments
- Dedicated profile management and per-app profile assignment screens
- Live profile propagation to already hooked scoped apps
- Per-field enable controls and one-tap randomization for advanced identifiers
- Safe Mode that keeps the real
Build.VERSIONandro.*.build.version.*values for selected apps - Model, fingerprint, telephony, and identifier hooks remain enabled in Safe Mode
- Android System Framework is always excluded from hooking
- Optional resolution, density, window metrics, and configuration spoofing
- Locale, timezone, Build ID, and Display ID spoofing
- English, Korean, Japanese, and Simplified Chinese UI
- Runtime diagnostics and app information screens
- Rooted LSPosed and non-root patch-manager workflows
- Android 8.0 or newer
- One of the following module runtimes:
- LSPosed on a rooted device
- A non-root patch manager that implements the legacy Xposed API, such as LSPatch or NPatch
- Install the SpoofMyDevice APK and open it once.
- Enable SpoofMyDevice in LSPosed.
- Add target apps to the module scope. Do not select Android System Framework.
- Open Profiles, create a profile, then select a preset or edit its custom values and save it.
- (Optional) Set a profile as Default in the Profiles tab. Any app in the Xposed scope without an explicit profile assignment will automatically use the default profile.
- Open Apps to assign specific profiles to individual apps if needed (overriding the default profile).
- Force stop and relaunch newly assigned target apps.
- Install the SpoofMyDevice APK normally and open it once.
- In LSPatch or NPatch, register SpoofMyDevice as the Xposed module for the target APK.
- Patch the target APK and install the patched result.
- Create and save a profile in Profiles, set it as Default or assign it directly to the patched app in Apps.
- Relaunch the patched target app.
Patched APK signatures differ from the original signatures. Apps that enforce signature, installer, or integrity checks may reject a patched build, and an official app update replaces the patched APK.
Safe Mode exists to prevent crashes when the spoofed profile reports a newer Android version than the physical device. For selected apps it bypasses only:
Build.VERSIONfieldsro.*.build.version.*properties
Model, fingerprint, network, telephony, and identifier spoofing still applies. Android System Framework is never hooked, regardless of Safe Mode selection. Safe Mode protection also applies when an app receives spoofing via the Default Profile.
The companion app stores reusable profiles, app assignments, default profile selection, and global runtime options together in one app-private app_profiles.json file.
When a hooked application process requests a configuration:
- Explicit Assignment: If the package has a specific profile assigned in Apps, that profile is applied.
- Default Profile: If no specific profile is assigned, but a Default Profile is configured in Profiles, the default profile is applied.
- Unassigned: If no explicit assignment exists and no Default Profile is set, the package is left unhooked.
Applying a profile broadcasts a config-change event so already hooked processes can reload it. A newly assigned app must be relaunched because Xposed hooks are installed when its process starts. Some apps also cache identifiers internally and require a force stop after profile changes.
git clone https://github.com/BuSung-dev/SpoofMyDevice.git
cd SpoofMyDevice
./gradlew assembleDebugThe debug APK is generated at:
app/build/outputs/apk/debug/app-debug.apk
This project is intended for research, testing, and authorized use. Follow applicable laws, platform rules, and the policies of the apps being tested.