79695912

Date: 2025-07-09 15:46:11
Score: 1
Natty:
Report link
You can exclude those binaries from the apk during packaging.
Add the snippet below in the build.gradle.kts / build.gradle in the app module to fix it.

android {
    packaging {
        resources {
            excludes.add("**/dump_syms/**")
        }
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Alex Tenkorang