Hello
I have a program that uses google-ads with the below dependency in pom.xml:
<dependency>
<groupId>com.google.api-ads</groupId>
<artifactId>google-ads</artifactId>
<version>10.1.0</version>
</dependency>
This authenticates and just calls listAccessibleCustomers of CustomerServiceClient. So far so good.
But once I merely add the following to pom.xml:
<dependency>
<groupId>com.google.api-ads</groupId>
<artifactId>ads-lib</artifactId>
<version>4.9.1</version>
</dependency>
It appears to get deadlocked somewhere, never returning from the listAccessibleCustomers() call. Running Charles, I can see that the network call returns with the customer list, but somewhere there is a deadlock.
Any clues?
Thanks.