How do I integrate C++11 into Android?
With the latest gradle-experimental-plugin 0.8.0-alpha4 add to your app/build.gradle:
model { android { ndk { moduleName "native" CFlags.add("-std=c11") // Enable C11 support ldLibs.add("log") } } }