Hi everyone, I am quite new with symbian and c++. I try to use sensor on N97 device. I got error that rrsensorapi.h is not found. I have check through epoc folder it not there either. In this case, how can I find rrsensorapi?
I have sensor.pri file like this
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
HEADERS += xqsensor.h \
xqaccsensor.h \
xqdeviceorientation.h \
xqdeviceorientation_p.h
SOURCES += xqsensor.cpp \
xqaccsensor.cpp \
xqdeviceorientation.cpp \
xqdeviceorientation_p.cpp
exists($${EPOCROOT}epoc32/release/winscw/udeb/RRSensorApi.lib)| \
exists($${EPOCROOT}epoc32/release/armv5/lib/RRSensorApi.lib) {
message( "Building for Sensor plugin" )
DEPENDPATH += .\plugin
HEADERS += xqsensor_p.h \
xqaccsensor_p.h
SOURCES += xqsensor_p.cpp \
xqaccsensor_p.cpp
symbian:LIBS += -lRRSensorApi
} else {
message("Warning: Sensor API not found!")
}