Matthias
Matthias

Reputation: 4677

Deploy Google App Engine backend from Android Studio

Is it possible to deploy a Google App Engine backend module in Android Studio as a Google App Engine project (on Google's servers)? In eclipse this was possible with the plugin, but now I don't see how to do this or found someone else doing this.

Upvotes: 3

Views: 1135

Answers (2)

Aniket Thakur
Aniket Thakur

Reputation: 68905

You can do this from UI itself. Go to

Build -> Deploy Module to App Engine

enter image description here

enter image description here

If you are deploying this for the 1st time then you will have to sign in to your google account by using add account button.

enter image description here

Upvotes: 0

Matthias
Matthias

Reputation: 4677

If you want to see what's under the hood of gradle:

gradlew tasks

If you want only the .war file

gradlew war

Will do the job:

gradlew appengineUpdate

Upvotes: 3

Related Questions