Use APKPure App
Get Neo-JVM old version APK for Android
Simulates a JVM
Simulates a JVM on Android
Example code that does run after compilation to a class file:
public class Main {
public static void main(String[] args) {
fak(10);
}
public static int fak(int i){
if(i<=0)
return 1;
return i*fak(i-1);
}
}
Sourcecode:
https://gitlab.com/neoexpert/jvm
Last updated on Jan 13, 2019
Much more op-codes implemented.
"Hello World" program works now.
Uploaded by
Bruno Octavio
Requires Android
Android 4.0+
Category
Report
Neo-JVM
0.5 by neoexpert
Jan 13, 2019