MCPcopy Index your code
hub / github.com/kivy/python-for-android / install_libs

Method install_libs

pythonforandroid/recipe.py:671–677  ·  view source on GitHub ↗
(self, arch, *libs)

Source from the content-addressed store, hash-verified

669 rmdir(self.ctx.python_installs_dir)
670
671 def install_libs(self, arch, *libs):
672 libs_dir = self.ctx.get_libs_dir(arch.arch)
673 if not libs:
674 warning('install_libs called with no libraries to install!')
675 return
676 args = libs + (libs_dir,)
677 shprint(sh.cp, *args)
678
679 def has_libs(self, arch, *libs):
680 return all(map(lambda lib: self.ctx.has_lib(arch.arch, lib), libs))

Callers 5

install_stl_libMethod · 0.95
install_librariesMethod · 0.95
install_librariesMethod · 0.80
build_archMethod · 0.80
build_archMethod · 0.80

Calls 2

shprintFunction · 0.90
get_libs_dirMethod · 0.80

Tested by

no test coverage detected