├── .gitignore ├── LICENSE ├── README.md ├── pyproject.toml ├── python-publish.yml ├── setup.cfg ├── setup.py └── src ├── __init__.py ├── androidstorage4kivy.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt └── top_level.txt └── androidstorage4kivy ├── __init__.py ├── chooser.py ├── sharedstorage.py └── sharesheet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/python-publish.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/androidstorage4kivy.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/androidstorage4kivy.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/androidstorage4kivy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/androidstorage4kivy.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | androidstorage4kivy 2 | -------------------------------------------------------------------------------- /src/androidstorage4kivy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy/__init__.py -------------------------------------------------------------------------------- /src/androidstorage4kivy/chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy/chooser.py -------------------------------------------------------------------------------- /src/androidstorage4kivy/sharedstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy/sharedstorage.py -------------------------------------------------------------------------------- /src/androidstorage4kivy/sharesheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Android-for-Python/androidstorage4kivy/HEAD/src/androidstorage4kivy/sharesheet.py --------------------------------------------------------------------------------