André Felipe Fleck Bedran

Results 8 comments of André Felipe Fleck Bedran

I would rather wait for the 3.0 version release, if that fits within a reasonable schedule. Could you provide an estimate for when it should be available? Will it be...

This refers to Issue #7 as an attempt to solve it.

I will proceed to open a pull request with this change.

@LucianoPAlmeida I see, but wouldn't that be more of a workaround? What if I need to implement a more robust validation? There are cases when subclassing is better.

I see what you mean by that, but I still think it should be the dev's choice. If a complex case arises, and subclassing is somehow needed, the developer is...

The docs in [here](https://developer.android.com/ndk/guides/other_build_systems#overview) say the following about the x86_64 naming convention: > Despite the x86_64 tag in the Darwin name, those are fat binaries that include M1 support. The...

Ok, I was able to get past this issue by adding this to CMakeLists before the project() call: `set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY") ` This allowed me to bypass the compiler check and...

I've realized that the above won't work, since this will need to produce a shared library, not a static one. So I'm back to where I was before. Building with...