I'm trying to upload symbols for NDK crashlytic report. But while executing ./gradlew crashlyticsUploadSymbolsDebug i'm getting
A problem was found with the configuration of task ':app:crashlyticsCacheSymbolsDebug'.
> Directory '/Users/Developer/AndroidStudioProjects/SampleApp/app/build/fabric/debug/csyms' specified for property '$1' does not exist.
I've already added crashlytics block to gradle:app
crashlytics {
enableNdk true
}
also tried
crashlytics {
enableNdk true
androidNdkOut 'src/main/obj'
androidNdkLibsOut 'src/main/libs'
}
Both are failing with the above error.