0

I have a question about using GoogleApiClient. Is it necessary to use this Object or is it ok to use HttpUrlConnection and send requests as I did it many times? Now, I am also developing Android - app, where important to use Google Places API. But I create it like this: 1) Create search query 2) Send search request via Http 3) Get response as JSON and parse it out

Can anybody explain what the pros ans cons of each method, and which one is better? Thank in advance)

Mikhail Valuyskiy
  • 1,238
  • 2
  • 16
  • 31

1 Answers1

1

I think this video here gives a good idea about what GoogleApiClient can offer. As a quick summary, if the service is easier or only available through google (maps, sign in with google account, cross app syncing, etc.) then you should use the Object. Remember, you can always use both GoogleApiClient AND your own HttpUrlConnection requests.

Teo
  • 558
  • 1
  • 4
  • 10