skip to Main Content

I am developing an app that needs this library . Currenty, there is no java version. Is it possible to somehow integrate it with my current project.
https://pub.dev/packages/bls_signatures_ffi flutter version
https://github.com/Chia-Network/bls-signatures c++, javascript and python.
Please, any suggestions?

2

Answers


  1. Use c++ library through the Java Native Interface (JNI).

    See Add C and C++ code to your project for instructions.

    Login or Signup to reply.
  2. You can use C++ library in your Android project with the help of this link.

    But if you want any flutter implementation in your project then you can use bridging to share information in your project. Using this

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search