Skip to content

Commit 34a9539

Browse files
committed
Update ADB connection to use the new app package name
1 parent 94e6630 commit 34a9539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interceptors/android/android-adb-interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class AndroidAdbInterceptor implements Interceptor {
7575
}): Promise<void | {}> {
7676
await this.injectSystemCertIfPossible(options.deviceId, this.config.https.certContent);
7777

78-
if (!(await this.adbClient.isInstalled(options.deviceId, 'tech.httptoolkit.android'))) {
78+
if (!(await this.adbClient.isInstalled(options.deviceId, 'tech.httptoolkit.android.v1'))) {
7979
console.log("App not installed, installing...");
8080
let stream = await streamLatestApk(this.config);
8181
await this.adbClient.install(options.deviceId, stream);

0 commit comments

Comments
 (0)