diff --git a/help/en/img/adb_pairing.mp4 b/help/en/img/adb_pairing.mp4 new file mode 100644 index 0000000..d9c9edd Binary files /dev/null and b/help/en/img/adb_pairing.mp4 differ diff --git a/help/en/index.html b/help/en/index.html index f9cb318..3f7f596 100644 --- a/help/en/index.html +++ b/help/en/index.html @@ -66,7 +66,12 @@

Contents

@@ -526,6 +531,15 @@

Android 11 and above


+

Here's a 1 minute video guide:

+ + + +
+

ADB Connect Service

If Permission Watcher or Scheduled Checks are enabled, PMX connects to ADB on device boot. But if ADB has not been enabled by then, PMX will no more try to connect to ADB unless explicitly done by opening the app.

But if you enable ADB on boot in an automated way, you can notify PMX by sending the following Intent that ADB has been enabled:

diff --git a/help/main.css b/help/main.css index dcff43f..0ce7617 100644 --- a/help/main.css +++ b/help/main.css @@ -72,7 +72,8 @@ hr.dim { border-bottom: 1px solid rgba(255, 255, 255, 0.25); } -img { +img, +video { width: 100%; height: auto; border-radius: 10px; diff --git a/help/main.js b/help/main.js index c6176b8..f702d61 100644 --- a/help/main.js +++ b/help/main.js @@ -59,7 +59,7 @@ ['box-shadow', '0 2px 12px 0 ' + shadowColor] ], - ['img', + ['img, video', ['box-shadow', '0 2px 10px 0 ' + shadowColor] ], @@ -114,15 +114,15 @@ ], // Subtract img margin from card width. - ['img', + ['img, video', ['max-width', Math.min(cardWidth - 10, 500) + 'px'], ], - ['img.medium', + ['img.medium, video.medium', ['max-width', Math.min(cardWidth / 1.25, 400) + 'px'], ], - ['img.small', + ['img.small, video.small', ['max-width', Math.min(cardWidth / 1.5, 350) + 'px'], ],