I am trying to port my basic sdl game over onto android, but I've been stuck for a while now on using gradle. While I can compile an APK using a very basic main.cpp, as soon as I start coding as I normally would I get all sorts of errors that simply don't crop up in the visual studio compiler. For example, "nullptr not defined in this scope", for each causes not being acceptable, and lots of warnings saying bits of code are only available in -stdC++11. The error feed I could mostly rewrite my code around, but I'd much rather be able to have gradle compile using the same rules the VS compiler does... What am I doing wrong? Thanks Will
edit: previous question is similar but I am not using android studio