where Android libs are cached after build but before being placed in dists
(self)
| 121 | |
| 122 | @property |
| 123 | def libs_dir(self): |
| 124 | """ |
| 125 | where Android libs are cached after build |
| 126 | but before being placed in dists |
| 127 | """ |
| 128 | # Was previously hardcoded as self.build_dir/libs |
| 129 | directory = join(self.build_dir, 'libs_collections', |
| 130 | self.bootstrap.distribution.name) |
| 131 | ensure_dir(directory) |
| 132 | return directory |
| 133 | |
| 134 | @property |
| 135 | def javaclass_dir(self): |
nothing calls this directly
no test coverage detected