(self)
| 890 | self._res_mapper = {} |
| 891 | |
| 892 | def execute(self): |
| 893 | self.__init_attributes() |
| 894 | self.keep_ids() |
| 895 | self.process_databinding() |
| 896 | from tracing import Tracing |
| 897 | with Tracing('build_base_resource_aapt_task'): |
| 898 | self.run_aapt() |
| 899 | |
| 900 | def keep_ids(self): |
| 901 | public_keep_path = os.path.join(self._config['build_cache_dir'], 'public_keeper.xml') |
nothing calls this directly
no test coverage detected