migrating apks to java google app engine

savigdor

New Member
Licensed User
Longtime User
hi. can i migrate my android app's apk to google app engine and run the app as if it relies in android environment. if so - how do i do that?

Sent from my GT-I9000 using Tapatalk 2
 

agraham

Expert
Licensed User
Longtime User
No, it supports web applications using Java, Python or Go.
App Engine uses the Java Servlet standard for web applications. You provide your app's servlet classes, JavaServer Pages (JSPs), static files and data files, along with the deployment descriptor (the web.xml file) and other configuration files, in a standard WAR directory structure. App Engine serves requests by invoking servlets according to the deployment descriptor.
 
Upvote 0

savigdor

New Member
Licensed User
Longtime User
Any other app server supports this kind of a migration

Does AWS or any of app engine can do it?

What I am looking for is to develop a server application using b4a object file (apk or any of its decompiled files) instead of writing real code of Java, PHP or whatever language that's normally being used when writing a web application.

Using more than one language for the web application & the mobile device application complicates coding & I would like to avoid that.
 
Upvote 0
Top