diff --git a/pythonforandroid/recipes/materialyoucolor/__init__.py b/pythonforandroid/recipes/materialyoucolor/__init__.py index 6ae3ad2caf..39bbdc328a 100644 --- a/pythonforandroid/recipes/materialyoucolor/__init__.py +++ b/pythonforandroid/recipes/materialyoucolor/__init__.py @@ -1,13 +1,11 @@ -from pythonforandroid.recipe import CompiledComponentsPythonRecipe +from pythonforandroid.recipe import CppCompiledComponentsPythonRecipe -class MaterialyoucolorRecipe(CompiledComponentsPythonRecipe): - need_stl_shared = True +class MaterialyoucolorRecipe(CppCompiledComponentsPythonRecipe): stl_lib_name = "c++_shared" - version = "2.0.5" + version = "2.0.7" url = "https://github.com/T-Dynamos/materialyoucolor-pyhton/archive/refs/tags/v{version}.tar.gz" depends = ["setuptools"] - call_hostpython_via_targetpython = False recipe = MaterialyoucolorRecipe()