Force closed while init Meeting SDK on Android

Hi, I am using v5.17.0.18337, and my targetSdk 34. My Apps force closed while trying to init Meeting SDK and it happened recently on v5.16.10.17706 so I am thinking of upgrading the version cause I have to upgrade the targetSdk too, here’s my init function

private fun initSDK(call: MethodCall, result : MethodChannel.Result) {
        Utils.setLog(this, "initSDK ${call.arguments}")

        val params = ZoomSDKInitParams().apply {
            domain = "zoom.us"
            enableLog = true
            jwtToken = call.argument("jwt") ?: ""
        }

        sdk.initialize(this, ZoomSDKListener(), params)
        result.success(true)
        return
    }

and here’s the error

java.lang.IncompatibleClassChangeError: Class ‘com.android.org.kxml2.io.KXmlSerializer’ does not implement interface ‘lg.b’ in call to ‘void lg.b.j(java.io.OutputStream, java.lang.String)’ (declaration of ‘us.zoom.proguard.su0’ appears in /data/app/~~xkxIELM66eDX4YPfPXaaSw==/com.blablabla.blablabla.stage-gT5tln0Gc5n2-o5WtPJTpw==/base.apk!classes6.dex)

My bad, I solved it by setting shrinkResources and minifyEnabled to false