diff --git a/libretrofuzz/__init__.py b/libretrofuzz/__init__.py index 922fee7..3bc35c3 100644 --- a/libretrofuzz/__init__.py +++ b/libretrofuzz/__init__.py @@ -1 +1 @@ -__version__ = "3.4.4" +__version__ = "3.4.5" diff --git a/libretrofuzz/__main__.py b/libretrofuzz/__main__.py index 6197599..9d6cd24 100644 --- a/libretrofuzz/__main__.py +++ b/libretrofuzz/__main__.py @@ -90,6 +90,8 @@ CONFIG = Path(var, "RetroArch", "retroarch.cfg") elif sys.platform == "darwin": CONFIG = Path(Path.home(), "Library", "Application Support", "RetroArch", "config", "retroarch.cfg") +elif hasattr(sys, 'getandroidapilevel'): + CONFIG = Path("storage", "emulated", "0", "Android", "data", "com.retroarch.aarch64", "files", "retroarch.cfg") else: # all the rest based on linux. # If they arent based on linux, diff --git a/pyproject.toml b/pyproject.toml index 40b63f5..1a11c46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libretrofuzz" -version = "3.4.4" +version = "3.4.5" description = "Fuzzy Retroarch thumbnail downloader" authors = ["i30817 "] license = "MIT"