Hi,

This may be a silly question.
I have this c++ app and I want to compile it for an android device.
I know I need root to run those things, but that's not a problem.

It's compiled with g++ with parameter "-s" and has the following includes
Code:
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <ctime>
Would I be able to get this to work?

Thanks