I am using GooglePlayServices for my android application . I will be using Google+ Api & LocationServices Api. So from Google's documentation , I build the GoogleApiClient with addApi(Auth.GOOGLE_SIGN_IN_API), addApi(LocationServices.API). Every time user launches the application , I use Google+ api , but I use the LocationServices in rare cases (once in 100 launches). So what is the best way to implement.
Creating a single GoogleApiClient by adding two Api's ? or
Creating two GoogleApiClient's individually for those two api's?