mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
12 lines
287 B
Python
12 lines
287 B
Python
__version__ = "0.11.1"
|
|
|
|
class ServiceApp(App):
|
|
def build(self):
|
|
from jnius import autoclass
|
|
|
|
Intent = autoclass('android.content.Intent')
|
|
LbrynetService = autoclass('io.lbry.browser.LbrynetService')
|
|
|
|
if __name__ == '__main__':
|
|
ServiceApp().run()
|
|
|