Created
June 21, 2013 14:55
-
-
Save brianfromoregon/5831745 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GoogleAccountCredential credential = new GoogleAccountCredential(this, "oauth2:" + FusiontablesScopes.FUSIONTABLES); | |
JsonFactory jsonFactory = new GsonFactory(); | |
HttpTransport transport = AndroidHttp.newCompatibleTransport(); | |
fusiontables = new Fusiontables.Builder(transport, jsonFactory, credential).setApplicationName(appName).build(); | |
Fusiontables.Table.ImportRows cmd = fusiontables.table().importRows(tableId, content); | |
cmd.setDelimiter("\0"); | |
FusiontablesImport result = cmd.execute(); // Hangs here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment