Android Question android emulator that runs windows app

wonder

Expert
Licensed User
Longtime User
Compiled B4A code translates into pure Java code, so in theory, you can create anything with B4A that you would create with Java.
Are you saying that you want to create an Android app that runs Windows executable files (.exe)?
 
Upvote 0

Carlo2015

Member
Licensed User
Longtime User
Compiled B4A code translates into pure Java code, so in theory, you can create anything with B4A that you would create with Java.
Are you saying that you want to create an Android app that runs Windows executable files (.exe)?

yes thats right. the example above is actually a windows only game that he manages to run it on android
 
Upvote 0

wonder

Expert
Licensed User
Longtime User
In theory it should be possible, but I wouldn't know where to start.
I guess you would need to create a virtual machine or a way to interpret x86 code.
In either case I would use C/C++, rather than Java(B4A), since performace wise, it's a lot faster.

Anyway, good luck, I hope someone with more expertise than me will be able to help you.
 
Upvote 0

walterf25

Expert
Licensed User
Longtime User
In theory it should be possible, but I wouldn't know where to start.
I guess you would need to create a virtual machine or a way to interpret x86 code.
In either case I would use C/C++, rather than Java(B4A), since performace wise, it's a lot faster.

Anyway, good luck, I hope someone with more expertise than me will be able to help you.
You can use libgdx which is a cross platform engine, but you would have to do it in Java (eclipse), it will give you a windows, android and ios executable.

Walter
 
Upvote 0

Similar Threads

Top