I\'m getting sigsegv 11 in native code and i need to avoid stripping to understand what\'s wrong. The app uses library (aar) and i was able to avoid stripping f
sigsegv 11
There's an undocumented method 'doNotStrip' in packagingOptions, just add following lines in your build.gradle
packagingOptions{ doNotStrip "*/armeabi/*.so" doNotStrip "*/armeabi-v7a/*.so" doNotStrip "*/x86/*.so" }