Skip to content

Commit 5868b20

Browse files
timpeutcopybara-github
authored andcommitted
Remove quotes around additional adb install flags.
This causes issues on devices with release builds which use delta install. PiperOrigin-RevId: 811501646 Change-Id: I2ddb45c25fdbdddab3cf662cc0dabe05d8fbb9f5
1 parent f2d29ba commit 5868b20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/mi/deployment/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ func AndroidStudioSync(ctx context.Context, deviceSerial, port, pkg string, spli
4747
if userID != 0 {
4848
args = append(args, fmt.Sprintf("--user=%s", strconv.Itoa(userID)))
4949
}
50-
args = append(args, "--install-flags='-g -d'") // Grant runtime permission + allow downgrade
50+
args = append(args, "--install-flags=-g -d") // Grant runtime permission + allow downgrade
5151
args = append(args, splits...)
5252
cmd := exec.Command(jdk, args...)
5353
cmd.Stdout = os.Stdout

0 commit comments

Comments
 (0)