hsyogesh
11/02/2021, 7:26 PMprivate val client by lazy {
HttpClient {
install(HttpCookies) {
storage = ConstantCookiesStorage()
cookiesStorage = storage
}
install(JsonFeature) {
serializer = KotlinxSerializer(Json {
ignoreUnknownKeys = true
isLenient = true
})
}
}
}