Preetham Ivan Dsouza
11/07/2022, 12:35 PMcertificatePinner
etc (if we are setting keys dynamically and not locally) how do we achieve the same with Hilt?
Ref: Similar use case to this issuedawidhyzy
11/08/2022, 7:03 PMOauthInterceptor
is your implementation? If so instead of injecting concrete keys into OauthInterceptor
you need to inject a class that will provide latest value whenever requested. Something like:
interface KeyProvider {
fun provide(): String
}