I know i can use the People API to retrieve people connection
ListConnectionsResponse response = peopleService.people().connections().list("people/me").execute();
List<Person> connections = response.getConnections();
just as it is explain here
But i would love to retrieve list of friends that uses my app only. How can i retrieve only people connections that are using my app (my app users only)?