Configuring OkHttpClient for the Java Platform SDK in our Android app. The default connection pool seems too aggressive for mobile networks. When rapid API calls happen, threads hang on connectTimeout. Tried setting maxIdleConnections(1) and keepAlive(30, TimeUnit.SECONDS), but still see E/PlatformClient: Failed to execute request errors. How do others handle this without breaking the SDK’s internal client builder?