You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just add `execute()` on the end, and your code will work exactly the same as before.
232
238
233
239
```java
@@ -236,8 +242,32 @@ System.out.println(dialogs);
236
242
```
237
243
238
244
## Android
245
+
239
246
The Android SDK utilizes the Java SDK while making some Android-specific additions. This repository can be found [here](https://github.com/watson-developer-cloud/android-sdk). It depends on [OkHttp][] and [gson][].
240
247
248
+
## Using a Proxy
249
+
250
+
Override the `configureHttpClient()` method and add the proxy using the `OkHttpClient.Builder` object.
251
+
252
+
For example:
253
+
254
+
```java
255
+
ConversationService service =newConversationService("2017-05-26") {
0 commit comments