When I enter this in the Windows CMD...
red -c -t Android hello.red
...Red outputs a file called hello
with no filename extension. If I transfer this file to my Android device, it doesn't know what to do with it.
What additional steps must I follow to test my Red code on my Android device? Which of those steps, if any, must I do differently, depending on whether or not my code will attempt to use the Android bridge?
%tests/hello.red
, but not for the bridge examples:%bridges/android/samples/eval/eval.red
%bridges/java/hello.red
For me, the prompt simply returned to the next line without any errors or actions after./eval
or./hello
. When intending to use the bridge, is it necessary to package the executable into an .APK after all? What else must I do before I can use the bridge? – Confirmand