This tutorial clearly shows how to record page view start and end with google play services version 7+. I am forced to use version 6 with does not have start and end methods. I have gotten autocompletion to work with the version 6 API, but I am not sure if I am losing some functionality with these different methods.
Where the linked tutorial uses start, I am using view:
PendingResult<Status> view(GoogleApiClient apiClient, Activity activity, Uri appUri, String title, Uri webUrl, List<AppIndexApi.AppIndexingLink> outLinks)
Where the linked tutorial uses end, I am using viewEnd:
PendingResult<Status> viewEnd(GoogleApiClient apiClient, Activity activity, Uri appUri)
Aside from not being able to set a description with view/viewEnd, is there any functional difference between start/end vs view/viewEnd?