Closed marcprux closed 2 months ago
Turns out the "empty/missing DT_HASH/DT_GNU_HASH" error is a red herring. The problem seems to just stem from the stripping of libdispatch.so, which can be avoided with the build.gradle.kts
declaration:
android {
packaging {
jniLibs.keepDebugSymbols.add("**/libdispatch.so")
}
}