Question

I have a webapp & a java application that connects to Bigquery. I'm trying to add support for Cloud Storage using the StorageSample example.

But when running this code:

Storage storage = new Storage.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(
    BigqueryUtils.PROJECT_ID).build();

I get the following error:

You are currently running with version 1.17.0-rc of google-api-client. You need version 1.14.1-beta of google-api-client to run version 1.14.1-beta of the Cloud Storage API library.
Was it helpful?

Solution

Quick fix: Hi Febian: Why don't you just grab a new version of the client lib from here? Better way to manage libs: I have had best luck using Maven to manage dependencies for Google Java Client Libs. Check out the "Add Library to Your Project" link on the same page.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top