Process existing .aar bundles and copy to current dist dir.
(self, arch)
| 384 | shprint(sh.cp, '-a', *filenames, dest_dir) |
| 385 | |
| 386 | def distribute_aars(self, arch): |
| 387 | '''Process existing .aar bundles and copy to current dist dir.''' |
| 388 | info('Unpacking aars') |
| 389 | for aar in glob.glob(join(self.ctx.aars_dir, '*.aar')): |
| 390 | self._unpack_aar(aar, arch) |
| 391 | |
| 392 | def _unpack_aar(self, aar, arch): |
| 393 | '''Unpack content of .aar bundle and copy to current dist dir.''' |