diff --git a/mobile/android/android-device.ts b/mobile/android/android-device.ts index c6cffb73..0507042c 100644 --- a/mobile/android/android-device.ts +++ b/mobile/android/android-device.ts @@ -59,7 +59,10 @@ export class AndroidDevice implements Mobile.IAndroidDevice { } public deploy(packageFile: string, packageName: string): IFuture { - 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()(); } public openDeviceLogStream(): void {