Hi,
After that i try to add this .so files to Android Studio in this way:
1 - make folder jniLibs in src/main subfolder of my project
2 - copy all .so (with armeabi.... directory structure) in jniLibs
Ok but, now if i go in my MainActivity files i cannot write code like this:
try{
SocketUDT ns = new SocketUDT(TypoUDT.DATAGRAM);
...
}catch{...}
I cannot use SocketUDT, Android Studio give me error and i cannot use the library functions.
Where i'm doing wrong?
thanks