Deprecated Catapult GitHub. Please instead use http://crbug.com "Speed>Benchmarks" component for bugs and https://chromium.googlesource.com/catapult for downloading and editing source code..
When calling adb shell pm path <package>, we can get lines that don't start with package: that we don't care about, e.g. when adb isn't running beforehand
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
package:/data/app/com.google.android.apps.chrome-1/base.apk
This currently will raise a CommandFailedError. It should instead ignore the lines it doesn't care about and only raise an error if it can't determine the path from the output.
When calling
adb shell pm path <package>
, we can get lines that don't start withpackage:
that we don't care about, e.g. when adb isn't running beforehandThis currently will raise a CommandFailedError. It should instead ignore the lines it doesn't care about and only raise an error if it can't determine the path from the output.