Code Monkey home page Code Monkey logo

Comments (6)

T-Dynamos avatar T-Dynamos commented on June 24, 2024

Maybe you try to play with linking flags in get_recipe_env and add -lstdc++.

Something like:

    def get_recipe_env(self, arch, **kwargs):
        env = super().get_recipe_env(arch, **kwargs)
        env['LDFLAGS'] += ' -lstdc++'
        return env

from python-for-android.

magowiz avatar magowiz commented on June 24, 2024

Hi @T-Dynamos,
thanks for the hint, I changed the recipe in this way, like you suggested:

from pythonforandroid.recipe import RustCompiledComponentsRecipe


class ShazamIoCoreRecipe(RustCompiledComponentsRecipe):
    version = "1.0.7"
    url = (
        f"https://github.com/shazamio/shazamio-core/archive/refs/tags/{version}.tar.gz"
    )
    site_packages = "shazamio_core"

    def get_recipe_env(self, arch, **kwargs):
        env = super().get_recipe_env(arch, **kwargs)
        env['LDFLAGS'] += ' -lstdc++'
        return env


recipe = ShazamIoCoreRecipe()

I deleted buildozer home and build folders and built again, with new recipe, it builds successfully, but I still get same behavior: app crashes and on log there is same error.

from python-for-android.

magowiz avatar magowiz commented on June 24, 2024

Hi,
mantainer provided in a release in github some whl files https://github.com/shazamio/shazamio-core/releases , for example this: https://github.com/shazamio/shazamio-core/releases/download/1.0.7/shazamio_core-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

How can I create a recipe that install from there ?

from python-for-android.

T-Dynamos avatar T-Dynamos commented on June 24, 2024

@magowiz This can't be used, as it's compiled for glibc, but android is bionic.

(Only wheels compiled with android-ndk will work)

from python-for-android.

T-Dynamos avatar T-Dynamos commented on June 24, 2024

I believe this error can be easily solved, I will try work on it ASAP.

from python-for-android.

magowiz avatar magowiz commented on June 24, 2024

thank you very much!

from python-for-android.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.