Unable to Deploy Android App Engine Project on Google App Engine

谁都会走 提交于 2019-11-29 07:01:07
Wolfgang Schmid

I encountered the same problem as you and solved it in the following way:

  1. Before uploading, first you have to create the application in the App Engine Administration Console (see https://developers.google.com/appengine/docs/java/gettingstarted/uploading)

  2. Check your application id. The Application Identifier must be between 6 and 30 characters. Only Lowercase letters, digits, and hyphens (-) are acceptable characters. Leading and trailing hyphens are prohibited. - which means that Uppercase letters are not allowed.

  3. appengine-web.xml needs the same application id with which you have created your application in the Administration console. Put this application id between the <application> tag.

  4. Now you can deploy the application with Eclipse

I found this recently as a bug of Eclipse or Google App Engine plugin. Make sure that you specify the app id correctly in appengine-web.xml. It should be AppEngineTest2, not the URL (AppEngineTest2.appspot.com).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!