diff options
author | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-12 03:35:47 +0000 |
---|---|---|
committer | nathansmithsmith <nathansmith7@mailfence.com> | 2023-11-12 03:35:47 +0000 |
commit | 1ca6b3ccfa990b7856d16a50903fcf02a67f6ee4 (patch) | |
tree | 375a11733513f044929660f914f3a7595d06fbe1 | |
parent | a61e1e175ca601089a8734d694a5e37486f3189d (diff) | |
download | youload-release1.0.tar.gz youload-release1.0.tar.bz2 youload-release1.0.zip |
Ready for release 1.0release1.0
-rw-r--r-- | buildozer.spec | 3 | ||||
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | src/view/file_chooser.py | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/buildozer.spec b/buildozer.spec index 8c1e3ad..2e15e11 100644 --- a/buildozer.spec +++ b/buildozer.spec @@ -283,7 +283,8 @@ android.permissions = INTERNET, WRITE_EXTERNAL_STORAGE # (list) The Android archs to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64 # In past, was `android.arch` as we weren't supporting builds for multiple archs at the same time. -android.archs = arm64-v8a, armeabi-v7a +#android.archs = armeabi-v7a +android.archs = arm64-v8a # (int) overrides automatic versionCode computation (used in build.gradle) # this is not the same as app version and should only be edited if you know what you're doing diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b8bd7f5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +kivy +pytube diff --git a/src/view/file_chooser.py b/src/view/file_chooser.py index 0129264..939e292 100644 --- a/src/view/file_chooser.py +++ b/src/view/file_chooser.py @@ -5,6 +5,7 @@ from kivy.uix.filechooser import FileChooserListView from kivy.uix.textinput import TextInput import util +import os class YouloadFileChooser(Popup): |