Unknown command: verify-app-links when using adb shell pm verify-app-links

Viewed 1380
1 Answers

The prefix adb shell indicates that the command is executed on Android side, thus unless the adb shell command itself fails the platform-tools have no impact on the command.

A little bit up on the linked page you can read "Starting in Android 12". Most likely adb shell pm verify-app-links is also limited to devices with Android 12 or higher.

Related