Example #1
0
File: apk.py Project: BwRy/test-av2
 def install_configuration(self, dev):
     if self.apk_conf_gzip != '':
         local_path, local_filename = os.path.split(self.apk_conf_gzip)
         adb.unpack_local_to_remote(local_path, local_filename, '/', True, dev)
     else:
         for conf_file in self.apk_conf_files:
             adb.copy_file(conf_file[0], conf_file[1], True, dev)
Example #2
0
 def install_configuration(self, dev):
     if self.apk_conf_gzip != '':
         local_path, local_filename = os.path.split(self.apk_conf_gzip)
         adb.unpack_local_to_remote(local_path, local_filename, '/', True,
                                    dev)
     else:
         for conf_file in self.apk_conf_files:
             adb.copy_file(conf_file[0], conf_file[1], True, dev)
Example #3
0
File: apk.py Project: BwRy/test-av2
 def unpack_app_data(self, dev):
     local_path, local_filename = os.path.split(self.apk_conf_gzip)
     adb.unpack_local_to_remote(local_path, local_filename, '/data/data/' + self.package_name, True, dev)
Example #4
0
 def unpack_app_data(self, dev):
     local_path, local_filename = os.path.split(self.apk_conf_gzip)
     adb.unpack_local_to_remote(local_path, local_filename,
                                '/data/data/' + self.package_name, True,
                                dev)