(self, args)
| 1149 | |
| 1150 | @require_prebuilt_dist |
| 1151 | def apk(self, args): |
| 1152 | output, build_args = self._build_package(args, package_type='apk') |
| 1153 | output_dir = join(self._dist.dist_dir, "build", "outputs", 'apk', args.build_mode) |
| 1154 | self._finish_package(args, output, build_args, 'apk', output_dir) |
| 1155 | |
| 1156 | @require_prebuilt_dist |
| 1157 | def aar(self, args): |
nothing calls this directly
no test coverage detected