Skip to content
This repository was archived by the owner on Feb 2, 2021. It is now read-only.

Show message after successful deploy #523

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion mobile/android/android-device.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ export class AndroidDevice implements Mobile.IAndroidDevice {
}

public deploy(packageFile: string, packageName: string): IFuture<void> {
return this.applicationManager.reinstallApplication(packageName, packageFile);
return (() => {
this.applicationManager.reinstallApplication(packageName, packageFile).wait();
this.$logger.info(`Successfully deployed on device with identifier '${this.identifier}'.`);
}).future<void>()();
}

public openDeviceLogStream(): void {
Expand Down