{% extends 'layout.html' %} {% block content %}
New Scan
Please connect the device and set up either a local or remote adb connection. For more information please consult the Documentation

Writable system strategy

  • For Android emulators and devices running non-production builds
  • Works for most remotely deployed Android instances
  • Check if your device is supported by running:

    adb root
    adb remount

    If no errors show up then this is probably the one
  • Go with Emulated

System as root strategy

  • For devices running SuperSU (or equivalents)
  • Works when /system is writable as root
  • Android version < 9.0 supported
  • Check if your device is supported by running:

    adb shell su -c "mount -o rw,remount /system"

    If no errors show up then this is probably the one
  • Go with Rooted

Systemless root strategy

  • For devices rooted using Magisk
  • Android version > 9.0 supported
  • Requires third-party Magisk modules
  • Go with Systemless
{% endblock %}