(self, _args)
| 1198 | '{Style.RESET_ALL}'.format(Style=Out_Style)) |
| 1199 | |
| 1200 | def delete_dist(self, _args): |
| 1201 | dist = self._dist |
| 1202 | if not dist.folder_exists(): |
| 1203 | info('No dist exists that matches your specifications, ' |
| 1204 | 'exiting without deleting.') |
| 1205 | return |
| 1206 | dist.delete() |
| 1207 | |
| 1208 | def sdk_tools(self, args): |
| 1209 | """Runs the android binary from the detected SDK directory, passing |
nothing calls this directly
no test coverage detected