We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e6630 commit 34a9539Copy full SHA for 34a9539
src/interceptors/android/android-adb-interceptor.ts
@@ -75,7 +75,7 @@ export class AndroidAdbInterceptor implements Interceptor {
75
}): Promise<void | {}> {
76
await this.injectSystemCertIfPossible(options.deviceId, this.config.https.certContent);
77
78
- if (!(await this.adbClient.isInstalled(options.deviceId, 'tech.httptoolkit.android'))) {
+ if (!(await this.adbClient.isInstalled(options.deviceId, 'tech.httptoolkit.android.v1'))) {
79
console.log("App not installed, installing...");
80
let stream = await streamLatestApk(this.config);
81
await this.adbClient.install(options.deviceId, stream);
0 commit comments