Hi Rohit,

http://tizen.org/appcontrol/operation/call is a string to specify operation 
that request launch another application like dialler. You can refer more 
details in here: 
https://developer.tizen.org/help/topic/org.tizen.web.appprogramming/html/guide/app_guide/application_service.htm

I recommend you to see Phone app source code of Tizen. See here: 
https://review.tizen.org/git/?p=apps/osp/Phone.git;a=tree;h=refs/heads/tizen_2.0;hb=refs/heads/tizen_2.0

Regards,
Daehyeon

------- Original Message -------
Sender : Rohit Pathania<[email protected]>
Date : 2013-02-19 15:46 (GMT+09:00)
Title : [Tizen General] Tizen App for making outgoing call

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.


void
MyAppClass::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


Jung, Daehyeon 
Tizen Open Source Community
Software R&D Center, Samsung Electronics 
Mobile: +82 (10) 9114-0630

Attachment: Attach1.1.txt
Description: Binary data

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

Reply via email to