High Guys,
I'm beginning my adventure with Gstreamer framework for Android. I decided to use Android Studio rather that eclipse as it seems that it is probably a better choice for the future (AS is now the official IDE). Anywa,y I successfully managed to import, configure and build GST tutorials for android but one thing that still baffles me is that AS editor does not see GST header files:
I do not know how to solve it - i tried adding the path to the header in gradle.bulild file, but that does not bring any effect:
ndk {
moduleName "tutorial-4"
abiFilters 'arm64-v8a'
cFlags += "-I${file("F:/GST-android/arm64/include/gstreamer-1.0/")}".toString()
}
Compilation runs fine, so GSTREAMER_ROOT_ANDROID is set correctly, it just that Android Studio editor complains that it cannot resolve any gstreamer structs or functions.
any ideas how to point AS to these headers?