diff -r fe8116e855ab -r 77977f357b83 android.rst --- a/android.rst Mon Jun 12 19:18:30 2023 +0300 +++ b/android.rst Mon Jun 12 19:20:25 2023 +0300 @@ -204,9 +204,14 @@ $ adb devices -Install application from ``.apk`` file:: +Install an app from ``.apk`` file:: + + $ adb install /path/to/application.apk - $ adb install -r /path/to/application.apk +Re-install an app from ``.apk`` file (avoids the error ``INSTALL_FAILED_ALREADY_EXISTS`` if the app +is alreay installed):: + + $ adb install -f /path/to/application.apk List installed package names (with path to ``.apk`` files!)::