Last active
September 2, 2021 08:35
-
-
Save d4vidi/15a7138f3c302c7a23f5d3c9623b7db5 to your computer and use it in GitHub Desktop.
Android CI Blog: test butler (emu launch)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Download test butler | |
curl -f -o ~/test-butler-2.2.1.apk https://repo1.maven.org/maven2/com/linkedin/testbutler/test-butler-app/2.2.1/test-butler-app-2.2.1.apk | |
# Install test butler | |
./platform-tools/adb install ~/test-butler-2.2.1.apk | |
# Launch the test butler background service!!! | |
./platform-tools/adb shell am startservice com.linkedin.android.testbutler/com.linkedin.android.testbutler.ButlerService | |
# Check that the service is indeed running... Expected output is: | |
# system 9448 5306 4866736 96372 0 0 S com.linkedin.android.testbutler | |
./platform-tools/adb shell ps | grep butler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment