Hi,
I’m just learning about Corona Native …
https://docs.coronalabs.com/native/android/index.html#native-apis
says: “Android development is done using the Java programming language”
but, the similar page for Corona Native on iOS talks about using C.
Can I use C on Android? That’s the *whole purpose* I wanted to use Corona SDK + Native …
so I could develop with a mixture of C and Lua for both iOS and Android
On neither platform do I want to use C to access platform specific OS stuff / APIs …
it’s just code that does POSIX file system things (e.g, “open”, “write”), and then generic C things
(e.g., compression, encryption, image manipulation given a .jpg file).
(I can do such generic / POSIX C things on iOS using XCode … successfully mixing C with
Objective C … so I know how useful this can be … to have native-speed C code for the bulk of
my code, and Objective C or Lua or whatever for my GUI / platform-specific code.)
thanks,
Stan