mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 09:02:12 +00:00 
			
		
		
		
	Merge pull request #258 from ep1cman/install_fix
ApkWorkload: Fixed replacing apps on a device
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