First alpha release ()

* added __version__ to main.py
* package name changed from io.lbry.lbrynet to io.lbry.browser
* removed unnecessary WRITE_EXTERNAL_STORAGE permission from AndroidManifest template, buildozer.spec updates and some cleanup
This commit is contained in:
akinwale 2018-03-31 10:28:26 +01:00 committed by GitHub
parent c9d8fa1e85
commit 76dee67e9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
298 changed files with 43 additions and 40521 deletions
src/main/python

View file

@ -1,16 +1,12 @@
__version__ = "0.1.1"
class ServiceApp(App):
def build(self):
from jnius import autoclass
Intent = autoclass('android.content.Intent')
LbrynetService = autoclass('io.lbry.lbrynet.LbrynetService')
#context = autoclass('org.kivy.android.PythonActivity').mActivity
#LbrynetService.start(context, '')
# close the activity once the service starts
# ideally, we should have some form of service control for the activity
#context.finish()
LbrynetService = autoclass('io.lbry.browser.LbrynetService')
if __name__ == '__main__':
ServiceApp().run()