mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-30 06:34:13 +00:00 
			
		
		
		
	ApkWorkload: Fixed replacing apps on a device
Previously if trying to downgrade an app using the `-r` option of `adb install` the `INSTALL_FAILED_VERSION_DOWNGRADE` error would occur. The app is now uninstalled first to prevent this.
This commit is contained in:
		| @@ -368,7 +368,9 @@ class ApkWorkload(Workload): | ||||
|  | ||||
|     def install_apk(self, context, replace=False): | ||||
|         success = False | ||||
|         output = self.device.install(self.apk_file, self.install_timeout, replace=replace) | ||||
|         if replace: | ||||
|             self.device.uninstall(self.package) | ||||
|         output = self.device.install(self.apk_file, self.install_timeout) | ||||
|         if 'Failure' in output: | ||||
|             if 'ALREADY_EXISTS' in output: | ||||
|                 self.logger.warn('Using already installed APK (did not unistall properly?)') | ||||
|   | ||||
		Reference in New Issue
	
	Block a user