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

Merge release in master pre 1.5.0 #524

Merged
merged 2 commits into from
Nov 16, 2015
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