Python ImportError:dlopen失败:site packages/grpc/_cython在为Android打包时是64位而不是32位

Python ImportError:dlopen失败:site packages/grpc/_cython在为Android打包时是64位而不是32位,python,python-3.x,kivy,buildozer,Python,Python 3.x,Kivy,Buildozer,当我尝试为Android打包我的应用程序时,我得到了以下importorror错误。我在VirtualBox上使用Ubuntu ImportError: dlopen failed: "/data/data/org.test.myapp/files/app/_python_bundle/site-packages/grpc/_cython/cygrpc.so" is a 64-bit instead of a 32-bit 这里有更多的回溯:这表明grpc已经编译了可能是为

当我尝试为Android打包我的应用程序时,我得到了以下
importorror
错误。我在VirtualBox上使用Ubuntu

ImportError: dlopen failed: "/data/data/org.test.myapp/files/app/_python_bundle/site-packages/grpc/_cython/cygrpc.so" is a 64-bit instead of a 32-bit

这里有更多的回溯:

这表明grpc已经编译了可能是为您的桌面构建的组件。它需要一个python for android的构建配方来正确编译它。啊,好吧,我已经找到了这个grpcio配方,但不确定我需要做什么才能将它添加到我的需求行中