Sabeeh Zaidi
Sabeeh Zaidi
Hey @poovamraj thank you for your response. We did try that, as Nick mentioned in his query, when making requests at runtime, the NetworkingClient used is the default one instead...
Hey @poovamraj it is the same interface implementation you mentioned above, but what I notice is that the calls end up in the `DefaultHttpClient` anyway. This is how I did...
@poovamraj we then proceed to use the `auth` object with the `Lock.newBuilder()` as follows: ``` val builder = Lock.newBuilder(auth, presenter) .allowForgotPassword(false) .setDefaultDatabaseConnection(Auth0Authenticator.DATABASE_CONNECTION) .withUsernameStyle(UsernameStyle.EMAIL) .withAudience(BuildConfig.AUTH0_AUDIENCE) .withScope(Auth0Authenticator.AUTH0_SCOPES) .withScheme(BuildConfig.AUTH0_SCHEME) .closable(true) .allowSignUp(false) startActivity(builder.build(this).newIntent(this)) ```...
Hey @poovamraj not yet but we'll get to it as soon as we can. Still in the pipeline as it will block future work.