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

Method build_arch

pythonforandroid/recipe.py:598–604  ·  view source on GitHub ↗

Run any build tasks for the Recipe. By default, this checks if any build_archname methods exist for the archname of the current architecture, and runs them if so.

(self, arch)

Source from the content-addressed store, hash-verified

596 return True
597
598 def build_arch(self, arch):
599 '''Run any build tasks for the Recipe. By default, this checks if
600 any build_archname methods exist for the archname of the current
601 architecture, and runs them if so.'''
602 build = "build_{}".format(arch.arch)
603 if hasattr(self, build):
604 getattr(self, build)()
605
606 def install_libraries(self, arch):
607 '''This method is always called after `build_arch`. In case that we

Callers 7

build_recipesFunction · 0.45
build_archMethod · 0.45
build_archMethod · 0.45
build_archMethod · 0.45
build_archMethod · 0.45
build_archMethod · 0.45
build_archMethod · 0.45

Calls 1

formatMethod · 0.80

Tested by

no test coverage detected