Error I\'m getting:
error: undefined reference to \'__android_log_print\'
I\'ve already added this line to my .cpp file:
It seems that using Gradle + Android Studio the Android.mk file is ignored.
As explained here, try adding the following directive to your build.gradle:
android { defaultConfig { ndk { moduleName "modulename" ldLibs "log" } } }