(self)
| 237 | return os.path.join(self.get_backup_values_dir(), 'freeline_id_keeper_ids.xml') |
| 238 | |
| 239 | def get_sync_file_path(self): |
| 240 | dir_path = os.path.join(self._cache_dir, self._module_name, 'respack') |
| 241 | if not os.path.isdir(dir_path): |
| 242 | os.makedirs(dir_path) |
| 243 | return os.path.join(dir_path, self._module_name + '.sync') |
| 244 | |
| 245 | def get_dst_dex_path(self): |
| 246 | return os.path.join(self.get_patch_dex_dir(), self._module_name + '.dex') |
no outgoing calls
no test coverage detected