hello,
is it possible to use Tizen::Telephony::CallManager class on serviceapp
when i tried this, the error occured during build.
the Error is "use of undeclared identifier 'CallManager' "
when i tried this class on the app has Ui, it working fine,
but, whenever i tried it on ServiceApp. the Error occured.
------------------- I just added 3 line to "MultiProcServiceApp Demo"
using namespace Tizen::Telephony;
...
CallManager* pCallManager = new CallManager();
pCallManager->Construct();
-----------------------