main-android-live.py
1 """This module is for thread start.""" 2 from . import state 3 import sys 4 from .bitmessagemain import main 5 from termcolor import colored 6 print((colored('kivy is not supported at the moment for this version..', 'red'))) 7 sys.exit() 8 9 10 if __name__ == '__main__': 11 state.kivy = True 12 print("Kivy Loading......") 13 main()