Skip to main content

ZennoDroid 2.4.8.0


18.02.2026

Added:

[+] ZD ENTERPRISE. A new action for emulating an enabled WiFi connection has been added. It is useful on firmware versions that do not detect an internet connection when WiFi is disabled. An AddWiFiEmulation parameter has been added to the C# API to enable WiFi emulation.

var filter = new DeviceFilter();
filter.Country = "us";
var options = new DeviceOptions();
options.AddWiFiEmulation = true;

var json = instance.DroidInstance.Settings.GenerateRandomLSPosedSettings(filter, options);
instance.DroidInstance.Settings.SetLSPosedSettings(json);

[+] A method for quickly changing the image capture quality has been added to the C# API. It can be executed both before and after connecting to a device.

// 0 - Very low quality, 5 - Low, 10 - High
instance.DroidInstance.Screen.SetCaptureScreenQuality(10);

[+] ZD ENTERPRISE. A method for patching the Flutter library (ReFlutter) has been added to the C# API, enabling subsequent traffic interception and analysis in Burp Suite.

// Patch the library
instance.DroidInstance.App.PatchFlutterLib("tech.httptoolkit.pinning_demo", "10.0.2.2:8083");
// Restore the original library
instance.DroidInstance.App.RestoreFlutterLib("tech.httptoolkit.pinning_demo");

Usage example. Sample application for testing request interception through Flutter.

[+] A method for getting the path to the installed application folder has been added to the C# API (the path changes on reinstallation and has the format /data/app/~~y085wNyYQQpQwtJ1jpUYOg==/com.android.chrome-rD8qfdRUT680QgUrsaftWQ==).

return instance.DroidInstance.App.AppDir("com.android.chrome");

[+] Improvements for hiding Frida usage on a device:

  • Frida has been replaced with the anti-detect fork Florida.
  • The frida-server process name has been changed.
  • The auxiliary process name re.frida.helper has been changed.
  • The port used has been changed.

[+] Frida has been updated to 17.5.2 (Florida).

[+] AdbClient has been updated to 3.6.16.

[+] Scrcpy has been updated to 3.3.4.

[+] Appium Settings has been updated to 7.0.13. For the automatic update, you must first uninstall the currently installed version (io.appium.settings).

[+] UIAutomator2 has been updated to 9.10.0.

[+] Adb has been updated to 36.0.2.

[+] Clash has been updated to 1.19.18. For the automatic update, you must first uninstall the current version.

Fixed:

[] Fixed a DNS leak when using the allowlist and blocklist in Clash proxy mode.

[] ZD ENTERPRISE. Fixed the behavior of the Get clipboard and Set clipboard actions, as well as character input in Native Input mode on non-standard firmware.

[] ZD ENTERPRISE. Added a bypass for the protection against obtaining Root by all previous methods in the BlueStacks emulator version 5.22.140 and higher. Updated Root script: BlueStacks 5 Root ver.6.zip, instructions.

[] ZD ENTERPRISE. Fixed the launch of the BlueStacks emulator version 5.22.140 and higher via the C# API:

string name = new BlueStacks5Manager().TitleToNameConverter("BlueStacks App Player 17");
new BlueStacks5(name).Start();

[] ZD ENTERPRISE. Fixed incorrect filter behavior by Brand in the Generate device action.

[] Fixed the Invalid virtual disk (InvalidMedium) error when starting LDPlayer.

[] Fixed the "Failed to fix operator" error.