How To Setup Ndk Libs Path In Gradle?
I have two projects A and B. A is a main project, that use B thought dependency A->B NDK libs located in two projects : -------------- -------------- | A | |
Solution 1:
Finally I solved my problem. Read attentively.
The mistake was in path of Java class that worked with JNI.
There is no gradle mistakes. Mistake was in package name. I move my class that contains native methods to another package.
When you change package name(move package) for class that contains native methods, you should change method signature in native code. If you doesn't have ability to change native code you should keep package name for this class.
Post a Comment for "How To Setup Ndk Libs Path In Gradle?"