I'm building a java project on google app engine platform,
and I found a PHP library that will help me on my project needs.
is it possible to run both projects under the same app engine project?
Yes, you can use different languages in different modules.
See Using both Java and Python with the new "Module" feature on AppEngine?
Related
I'm trying to do an application, that can pilot a parrot jumping sumo drone but there is no existing JAVA library, so I tought : "Is this possible to use an Android SDK into a standalone desktop JAVA application ?"
Hope you can answer me !
Joseph
Is this possible to use an Android SDK into a standalone desktop JAVA application?
No. There may be a couple of utility classes that you could get from the Android source code that would work on ordinary Java. Most of what is in the Android SDK is tied to the Android OS.
My maps project is basically developed by using java script in .net,
All the files are in .cs format. I want to convert this entire project into android project
or if there is any source code present please provide me.
I am presently using android development tool plugin for android development.
The default sample maps is not working in my eclipse.
Suggest me any other options?
How to resolve this issue?
If you are comfortable with using c# already and really only need the maps. You should look into Xamarin
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)
I would like to see if I can use GWT in my already existing Servlet-site using the Resin web-server, however I am having problems locating any decent guides that can help me out
Does anyone have a hands-on tutorial/guide on how to use GWT outside an "GWT project" or without using Google App Engine (GAE)?
I am still using Eclipse and have GWT plugins enabled and added the GWT support for the project, but I am unsure how to connect all the components together without using GAE.
First of all, you dont need GAE for GWT. I have been using GWT nearly for two years. I do not need to install GAE sdk..
I recommend your to read this document . It explains how to configure application servers to integrate with gwt..