SDRausty / buildAPKs

Really quickly build APKs on handheld device (smartphone or tablet) in Amazon, Android, Chromebook and Windows📲 See https://buildapks.github.io/docsBuildAPKs/setup to start building APKs.
https://sdrausty.github.io/buildAPKs
Apache License 2.0
338 stars 71 forks source link

Is it possible to run an Android project without creating apks and installing it? #7

Closed thefzsalam closed 5 years ago

thefzsalam commented 6 years ago

It would really be a game changer if it is possible to run an android project like: javac MyActivity.java java com.myapp.MyActivty

without having to convert to dex and build apks.

It is possible theoretically, isn't it?

finessin87 commented 6 years ago

You need the dependency list to be compiled where they are associated and depending on the complexity of the app (multiple classes, functions, etc...) would decide the amount of class folders are contained in the main code. Plus, the program lang. alone is not what the computer reads, it's the hash. Hope this helps.

SDRausty commented 5 years ago

Closed: beyond scope of project

Quasic commented 5 years ago

dalvikvm may currently be the most stable tool to run Java, though it needs to be in Dex format. Other VMs need more work, last I heard... memory leaks and things...