Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added option to run ADB in no-streaming mode #1922

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Jul 19, 2024

  1. Added option to run ADB in no-streaming mode

    ADB can install an app either directly from the host ("streamed install"), or
    by copying the APK to the device and then running the installation process. The
    former is the current default, but the latter is still needed for some devices.
    Added an option allowing streamed install to be disabled.
    
    Signed-off-by: Helio Perroni Filho <xperroni@gmail.com>
    xperroni committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    6b553d2 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. Added missing change note

    Signed-off-by: Helio Perroni Filho <xperroni@gmail.com>
    xperroni committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    9157aad View commit details
    Browse the repository at this point in the history
  2. Updated android integration tests to cover new --no-streaming option

    Signed-off-by: Helio Perroni Filho <xperroni@gmail.com>
    xperroni committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    2b392c4 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Replaced --no-streaming option with --Xadb-install

    Replaced the --no-streaming option with the more general --Xadb-install, which
    allows passing arbitrary options to adb install.
    
    Signed-off-by: Helio Perroni Filho <xperroni@gmail.com>
    xperroni committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    22ad33e View commit details
    Browse the repository at this point in the history
  2. Updated install_apk() logic to address branch coverage failure

    Signed-off-by: Helio Perroni Filho <xperroni@gmail.com>
    xperroni committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    3eebad7 View commit details
    Browse the repository at this point in the history