I have configured build.gradle and Application to make Crashlytics works. But not able to figure out why the c++ code is showing "missing" and no any detail information(line number, call stack). "./gradlew crashlyticsUploadSymbolsdevelopmentRelease" succeed without any error. The stack trace of java code crash report works. Only crash report of c++ code show "missing".
The "libengine" is used by Java code through JNI.
build by:
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
my build.gradle:
crashlytics {
enableNdk true
androidNdkOut 'build/intermediates/cmake/development/debug/obj'
androidNdkLibsOut 'build/intermediates/cmake/development/release/obj'
manifestPath 'src/main/AndroidManifest.xml'
}