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