Removing ReLinker

If you don’t want to use ReLinker in your app, you can disable it by excluding the transitive Gradle dependency inside your build.gradle. PSPDFKit will detect that ReLinker is no longer present, and it’ll fall back to the default System.loadLibrary call:

dependencies {
    implementation('com.pspdfkit:pspdfkit:2024.1.2') {
        exclude group: 'com.getkeepsafe.relinker', module: 'relinker'
    }
}

ℹ️ Note: Deactivate ReLinker at your own risk, as this may cause unwanted app crashes on some devices.