I try to create a Google App Engine project in Intellij 2016.3 based on this tutorial. The described "Google App Engine" plugin does not exist. I used the "Google Cloud Tools" instead. I enabled it, downloaded the actual Cloud SDK and added it to the App Engine under "Build, Execution, Deployment".
When I try to create an App Engine project as described in the tutorial, I should add under "Additional Libraries and Frameworks" the Google App Engine but this selection is not available. The project created without it is a standard Java project with no relation to the App Engine.
What do I have to do to create a Google App Engine project in Intellij?
Ok, the answer is already in the comment from Dan Comilescu above. I found it independently after exchanging almost 10 emails with Jetbrains. They first told me that Google App Engine is included by default into Intellij. Therefore everything should just work as described. Only after checking the logs they became aware that the problem is that it is only included in the Ultimate edition of Intellij. The Community edition does not have it and therefore can not use it! I urged them to put that on top of their tutorial page and meanwhile they have added it.
Related
I follow to this instruction : Idea documentaion
Number 4: I don't have Google app engine to select in "Additional Libraries and Frameworks".
So as I don't have any buttons to include the google app engine sdk to Idea.
I tried to follow another instruction which tells to install app engine as plugin, but it is not even listed in the repositories. Tried to it manually - no success at all...
So the question is: how to do the integration of app engine into the idea?
Thank you.
Google App Engine integration is only available in IntelliJ IDEA Ultimate. It's not available in IntelliJ IDEA Community Edition.
I'm trying to Integrate the Admob SDK into my Android app. This is so Admob will work with Mopub. Mopub's instructions link to Google's integration instructions. I'm confused by Google's instructions since I'm not using Android Studio or Gradle.
What is the Eclipse equivalent to the section starting with "Once Google Play services is installed"? I think this is making the build process aware of a Google Play Services jar file. I don't know enough about Eclipse, the Java Build Path, etc to determine the Eclipse equivalent.
http://www.androidbegin.com/tutorial/integrating-new-google-admob-banner-interstitial-ads/
This link will help you integrate google play services into your eclipse project for the purpose of displaying AdMob ads. But as far as I see in google search, there is no official tutorial related to eclipse integration of AdMob now.(It has been replaced by Android Studio tutorial) I guess they might be focusing more towards asking developers to use Android Studio. So I think, we might have to make transition soon.
I am a Java novice and am trying out the Google Endpoints with Python backend(module) for web app and Java for Android coding. I am following the official Google tutorial.
On the above link, the tutorial describes the setup using Android Studio and asks us to replace the build.gradle file with the given content. But in eclipse(with ADT), I could not find the build.gradle file itself. On googling, I found that there is a Gradle plugin available for Eclipse.
What is the recommended way to develop Google Cloud Endpoints based Android App: using Android Studio or Eclipse as editor(in terms of ease)?
If Eclipse is an equally good option for above question(which I believe should be the case), how do I solve this grade.build problem?
If there are any other updated tutorials for the same, please mention them as well. Appreciate your time and help
Nothing Sir,
If you built via Eclipse you could skip the build.gradle part
In conclusion,
you can skip from Configuring the Project and go to the next page
https://developers.google.com/appengine/docs/python/endpoints/getstarted/clients/android/create_app
I'm a bit of a newbie to all this.. but I can't seem to find any specific instructions for my scenario
I have built a simple endpoint api, using a maven project via eclipse.
I have built an android app, and just want to add a little test in it to use the simple api.
(sidenote: i have also built an app engine web app which will later also [i hope] make use of the same endpoint api, so both the web app and the android app make use of the same library / code)
anyway, I'm stumbling on a couple steps.
I can't seem to use the eclipse 'google -> generate cloud endpoint client library' option, since it's a maven project.
So i found on the google site, instructions to use the endpoints.cmd commandline to generate the library.
I successfully did this apparently (it created a zip file rather then just a jar)
here is where i am confused what to do next.. or if i missed something.
I have tried adding the jar within the zip as a library in the build path for my android app.
When I do that, I see that the Builder member doesn't seem to have been added.
Should I expect it to have been added by the library generation?
I can't seem to do anything in my android app code to use the library.
What am I missing / doing wrong?
Currently I am using Eclipse and I am trying to implement a Python Backend/API for an Android App on Google App Engine.
I see you can generate an App Engine Backend using Google Eclipse Plugins but from I see it can only be generated in Java. Is there a way to generate an App Engine Backend in Python?
Would it be better to create a Python App Engine Project and define all the API associated with the App in that project and just make calls through another project that houses the app itself?'
Just looking for some clarification as to how the best way to organize and implement this type of project.
The eclipse plugin is Java only. However you can use your favorite IDE to work with app engine and it works really fine. If you do like eclipse, add the app engine libraries to your project. And create a run configuration as follows:
${project_loc} or some other flags
More info here: https://developers.google.com/appengine/articles/eclipse
Please note that you can use the App Engine console to lauch/stop your project and code using your favorite IDE too, there is no need to configure eclipse to launch (it is just more comfortable to do so)