From b4a2a7375c7cbccc1f1a8afd18df07eaa2232dbd Mon Sep 17 00:00:00 2001 From: Brad Barnett <127794626+bdbarnett@users.noreply.github.com> Date: Mon, 21 Sep 2026 16:59:49 -0500 Subject: [PATCH] The recipe class is AudiodspRecipe: the DSP repository was renamed on 2026-09-21 Only the class name. The recipe still installs pydevices-audioif 0.0.4, the last version this build has been proved against; moving it to pydevices-audiodsp 0.5.x is a change of core and wants an APK build behind it. --- p4a_recipes/pydevices-audioif/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/p4a_recipes/pydevices-audioif/__init__.py b/p4a_recipes/pydevices-audioif/__init__.py index 6472645..5a891e7 100644 --- a/p4a_recipes/pydevices-audioif/__init__.py +++ b/p4a_recipes/pydevices-audioif/__init__.py @@ -4,7 +4,7 @@ from pythonforandroid.recipe import PyProjectRecipe -class AudioifRecipe(PyProjectRecipe): +class AudiodspRecipe(PyProjectRecipe): version = "0.0.4" name = "pydevices-audioif" depends = [] @@ -29,4 +29,4 @@ def get_pip_install_args(self, arch): return opts -recipe = AudioifRecipe() +recipe = AudiodspRecipe()