Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. List<String> scopes = Lists.newArrayList(SendToGoogleUtils.FUSION_TABLES_SCOPE);
  2. GoogleAccountCredential credential = SendToGoogleUtils.getGoogleAccountCredential(
  3. context, account.name, scopes );
  4. if (credential == null) {
  5. return false;
  6. }
  7. Fusiontables fusiontables = new Fusiontables.Builder(
  8. AndroidHttp.newCompatibleTransport(), new GsonFactory(), credential).build();
  9.  
  10. FATAL EXCEPTION Caused by: java.lang.NoSuchMethodError: No direct method <init>(Lcom/google/api/client/http/HttpTransport;Lcom/google/api/client/http/HttpRequestInitializer;Ljava/lang/String;Ljava/lang/String;Lcom/google/api/client/json/JsonObjectParser;Lcom/google/api/client/googleapis/services/GoogleClientRequestInitializer;Ljava/lang/String;Z)V in class Lcom/google/api/client/googleapis/services/json/AbstractGoogleJsonClient; or its super classes (declaration of 'com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient' appears in /data/app/dkr.ajijic.apps.tm-1/base.apk)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement