Questions tagged [google-eclipse-plugin]

Google Plugin for Eclipse (GPE) is a set of software development tools that enables Java developers to quickly design, build, optimize, and deploy cloud-based applications.

143 questions
1
vote
1 answer

Choose Java 7 JRE to run App Engine Dev Server with Cloud Tools for Eclipse

I try to run my maven App Engine project using Google Cloud Tools for Eclipse. Using "Run As > App Engine" as suggested in the docs results in the project being run in a Java 8 runtime (same as Eclipse uses). App Engine only supports Java 7. The…
Alex R
  • 808
  • 2
  • 10
  • 26
1
vote
1 answer

Eclipse GWT and AppEngine - Local Task Queues no longer get executed

In Eclipse 3.6 with Plugin v1.4.0 AppEngine 1.3.8 GWT 2.1.0 Local Task Queues no longer get executed. To reproduce: Create a new GWT and AppEngine project (I called the package "test2" below) Add the following to GreetingServiceImpl greetServer()…
Andy
  • 11
  • 2
1
vote
2 answers

Howto set outputdirectory with google eclipse plugin?

I'm using the Google Eclipse Plugin for GWT development. To do the configuration stuff there's a folder .settings with two files com.google.gdt.eclipse.core.prefs and com.google.gwt.eclipse.core.prefs. These files are a kind of propertie-files. Now…
daniel
  • 3,166
  • 2
  • 17
  • 18
1
vote
1 answer

Using Google code formatter in Eclipse with GWT

I would like to use the Google code style guidelines as an Eclipse code formatter. So, I imported this formatter XML definition file. However, it disrupts GWT comments, which in my code start at the end of the line with /* -{ and continue on to…
Joshua Fox
  • 18,704
  • 23
  • 87
  • 147
1
vote
2 answers

What is the difference in running GWT in differnt Web Application mode in eclipse?

In eclipse what is the difference running GWT Web Application in different Mode. Web Application Web Application (GWT Classic Dev Mode) Web Application (GWT Super Dev Mode) Web Application (running on an external server)
touchchandra
  • 1,506
  • 5
  • 21
  • 37
1
vote
0 answers

Integraing Google Identity Toolkit with GWT app on GAE

Using eclipse with the the "google-identity-toolkit" imported, is there no full java option to implement the Identity Toolkit for a GWT app on GAE? I've read the google docs for Google Identity Toolkit v3, but can't find a clear answer. This comes…
1
vote
0 answers

From Eclipse to Android studio: migrating an app-engine connected android project

Has anyone done this successfully and don't mind sharing their experiences? What are the gotchas? The difficult corners? In addition to being an App Engine Connected Android Project (AECAP), my project uses other dependencies such as Facebook SDK,…
1
vote
2 answers

Can I save images to Blobstore and save data to Datastore in one trip?

The argument has been made and settled on numerous occasions: Blobstore is better than DataStore for storing images. Now say I have an app similar to Instagram or Facebook or Yelp or any of those apps that are image intensive. In my particular case…
1
vote
1 answer

Datastore Small Operations quota reached

After a ton of research, I decided to do a lot of keys only queries in my code. Part of the reason being the following quote from Google's App Engine Pricing Page (yeah, it's amazing when coding means money). Calls to the datastore API result in…
1
vote
1 answer

GWT plugin for eclipse failing on startup

When I startup eclipse luna (4.4), after installing GWT plugin from this update site: https://dl.google.com/eclipse/plugin/4.4 I'm getting a bunch of errors on my Error Log, all of them complaining about "Could not resolve module XXX", where XXX is:…
jigarzon
  • 1,208
  • 2
  • 12
  • 28
1
vote
1 answer

client receiving 500 (GoogleJsonResponseException) although app-engine endpoint server seems to work fine

This bug is a bit of a mystery. I have a Google-Cloud-Endpoint method that returns List. Just before exiting the method, I log the content of the string as LOG.info(“list has: " + results); And when I check on app-engine’s log, I see the…
1
vote
1 answer

gitignore for App-engine connected android project

I need to collaborate on an App-engine Connected Android Project (AECAP). I am using GitHub as the repo. Eclipse has no option for creating AECAP from existing source (as does android and other java projects -- so google needs to fix this). Anyway,…
learner
  • 11,490
  • 26
  • 97
  • 169
1
vote
2 answers

Cannot install Google SDK in Eclipse

I am trying to install the Google Plugin for eclipse as described here: https://developers.google.com/eclipse/docs/install-eclipse-4.3 as I would like to set up a libgdx project. However, when I try to download it from this site: …
Travis
  • 659
  • 13
  • 28
1
vote
0 answers

Google Drive API stuck when uploading large file

When I am uploading files, sometimes it will stick on a large file for much longer than it is supposed to. It uploads the previous files ok, but it always gets stuck at this 26MB file. The upload should only take 3 minutes, but it runs for 3+ hours,…
Chloe
  • 25,162
  • 40
  • 190
  • 357
1
vote
1 answer

Does the GCE/Eclipse magic add client IDs automagically?

Or put another way... I just moved my app from aaa.appspot.com to a new project (and hence new Client ID) called bbb.appspot.com. When I went to add the new Client Id to my GCE API definitions, it was already there! So, on the one hand, it's magic…