Sunday, August 9, 2015

android studio ndk with java 8

You had errors compiling the samples until I append
tasks.withType(JavaCompile) {
    sourceCompatibility = JavaVersion.VERSION_1_7
    targetCompatibility = JavaVersion.VERSION_1_7
}

to build.gradle (app).

ctags for cocos2d-x

find . -name "*.h" -o -name "*.c" -o -name "*.cpp" -o -name "*.m" -o -name "*.mm" -o -name "*.java" -o -name "*.py" -o -name "*.lua" > src.files

ctags -R --c++-kinds=+px --fields=+iaS --extra=+q -L src.files