I'm trying to include a C library in my flutter app. I have some .h files, and a .a file. If I understand correctly, the .h files are headers, and the .a file is a statically linked library.
My goal is to run some functions from that library into my flutter code, but I find the flutter documentation very unclear about how to do it. I don't know anything about C, so I really struggle to understand the code, and I don't really know where to start.
My question is: Is it possible to run code from .a file in a flutter app, and how can I do it? Or do I need a .so file, or the source code?