A C++ library which was converted to .AAR (Not by me) to use with Android Studio . I was able to add the aar file inside lib folder and was able to sync successfully using gradle .
I am well aware that c++ library can be only accessed threw JNI . Unfortunate, i cant find any of C++ lib functions to include in JNI .
I am new to C++ lib integration . The arr file contains 8 .SO files
project level
repositories {
jcenter()
flatDir{
dirs 'libs'
}
}
app level
compile(name:'oxy', ext:'aar')
Any suggestion or help is appreciated .