lbry-android-sdk/p4a/pythonforandroid/bootstraps/empty/__init__.py

17 lines
305 B
Python
Raw Normal View History

2022-12-02 21:15:34 +01:00
from pythonforandroid.toolchain import Bootstrap
class EmptyBootstrap(Bootstrap):
name = 'empty'
recipe_depends = []
can_be_chosen_automatically = False
def assemble_distribution(self):
print('empty bootstrap has no distribute')
exit(1)
bootstrap = EmptyBootstrap()