lbry-android-sdk/src/main/python/main.py

13 lines
286 B
Python
Raw Normal View History

2019-05-02 07:10:23 +01:00
__version__ = "0.7.0"
2017-08-13 02:24:00 +01:00
class ServiceApp(App):
def build(self):
from jnius import autoclass
2017-08-13 02:24:00 +01:00
Intent = autoclass('android.content.Intent')
LbrynetService = autoclass('io.lbry.browser.LbrynetService')
2017-08-13 02:24:00 +01:00
if __name__ == '__main__':
ServiceApp().run()