KMM iOS HttpClient NSURLSessionAuthChallengeDisposition type error issue

290 Views Asked by At

I am still new to KMM and need help on httpClient to ignore ssl certificate. I had made the request able to ignore ssl certificate by adding the following code to HTTPClient Android Engine:

HTTPClient(Android){
    engine{
        sslManager = {
                httpsURLConnection ->
            httpsURLConnection.hostnameVerifier = HostnameVerifier { _, _ -> true }
                httpsURLConnection.sslSocketFactory = sslContext.socketFactory
        }
    }
}

and on iOS Engine:

HTTPClient(Ios){
    engine{
        handleChallenge { session, task, challenge, completionHandler ->
                completionHandler(NSURLSessionAuthChallengeUseCredential, null)
        }
    }
}

However, I have an issue on iOS side. NSURLSessionAuthChallengeUseCredential despite inheriting from NSURLSessionAuthChallengeDisposition is a type of Kotlin.Long, but the completion handler’s first param only take NSURLSessionAuthChallengeDisposition which is a type of platform.darwin.NSInteger.

At first, i thought to just convert NSURLSessionAuthChallengeUseCredential to Int or platform.darwin.NSInteger. It didn’t triggered any error at android studio, but once i build it from xcode the following error pops up:

Type mismatch: inferred type is Int but NSURLSessionAuthChallengeDisposition /* = Long */ was expected

I think this is a bug because the xcode expect NSURLSessionAuthChallengeDisposition to be a long value, while kmm accept type of platform.darwin.NSInteger.

0

There are 0 best solutions below