Open
Description
Hello,
I couldn't find example how to generate binding for already compiled library. I tried using gradle-javacpp-android as example but I couldn't figure out how can I link my shared library.
I have 4 libraries for 4 architectures:
lib
|-arm64-v8a
|-libtest_library.so
|-armeabi-v7a
|-libtest_library.so
|-x86
|-libtest_library.so
|-x86_64
|-libtest_library.so
test.h
#ifndef UNTITLED1_TEST_H
#define UNTITLED1_TEST_H
class Test {
int m_val;
public:
Test();
int get_val();
};
#endif //UNTITLED1_TEST_H