Is there any possible way to turn this code into it's own standalone exe or js so that it can run natively on Windows?
Thanks in advance for the help.
http://www.extremetech.com/computing/83812-run-android-apps-on-your-windows-pc-2
I have in the past used BlueStacks (mentioned) but experienced the ocassional freeze up mentioned, but mostly it was quite good.
Paul
@Paul Norman:
So I already started looking into BlueStacks. It seemed like a viable possibility, however, would it be able to launch by itself? Or would they have to open the emulator and then run the app? If it's the latter, they don't want it (same scenario with Arc Welder).
@Dave Smart:
The main Droidscript bits that I use for the app would probably boil down to buttons, layouts, and dialogues. I can post the code if necessary; I just assumed that was erroneous. And it's mostly native controls if not 100% native controls. As far as database usage, the app needs to write timestamps to a text file and then read values from that text file upon start-up. It works fine on my phone, but I can assume that might be problematic. Lastly, they're all using Windows 7, so that's good at least.
Secondly, Option 3 sounds like the most convenient option for me. Do you have a link?
Try adding some temporary code to your app like the code below to see whether the write works.
If it does, you should be able to find the folder and file.
var fldr = app.GetPrivateFolder("sjgfold");
var fil = fldr+"/sjgfile";
var reddit;
app.WriteFile(fil,"testing");
alert("Written");
reddit=app.ReadFile(fil);
txt.SetText(reddit);