1

Which package should we use for creating Android apps that work with Watson services?

Do we use Watson's android-sdk package or its java-sdk package?

Adil B
  • 14,635
  • 11
  • 60
  • 78
Troy
  • 188
  • 8

1 Answers1

0

Watson Android SDK is just a companion to Java SDK. It is intended to be used with Java SDK and augments it with some Android-specific functionality helpers, for example

  • Audio/Microphone
  • Camera
  • Gallery

In fact, if you look at the example in Android SDK it has the dependency on Java SDK and there is no much in the Android SDK sources except few helpers.

So the answer is you either use Java SDK (if you don't need Android extra functionality) or both.

Fedor Losev
  • 3,244
  • 15
  • 13