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/**")
}
}
}