Hi All,
   Is there any sample application on Tizen for making outgoing call.  I am
not able to get how to call Tizen telphony Api for making outgoing call. If
someone can put up light on this , it will be very help full for me.

While reading developer.tizen.org I got this got but could not get it. What
is http://tizen.org/appcontrol/operation/call in this. Where to include
this function.

voidMyAppClass::AppControlCallSample(void){
   HashMap extraData;
   extraData.Construct();
   String telKey = L"tel";
   String telVal = L"+919867123456";
   String typeKey = L"type";
   String typeVal = L"voice";
   extraData.Add(&telKey, &telVal);
   extraData.Add(&typeKey, &typeVal);

   AppControl* pAc = AppManager::FindAppControlN(L"tizen.phone",

L"http://tizen.org/appcontrol/operation/call";);
   if (pAc)
   {
      pAc->Start(null, null, &extraData, null);
      delete pAc;
   }}


Thanks & regards,

Rohit Pathania
_______________________________________________
General mailing list
[email protected]
https://lists.tizen.org/listinfo/general

Reply via email to