Hello Friends,
I am working on series S60 3rd edition(FP1).I have query regarding Calling Application.
This is the code which i was used to get "how to switch between earpiece and loudspeaker, when having a active call.",
{
TInt mode(-1);
TInt errNo = RProperty::Get(KTelephonyAudioOutput,
KTelephonyAudioOutputPreference, mode);
RDebug::Print(_L("CAnswerIncomingCallContainerView::ToggleSpeaker() err == %d"), errNo);
switch (mode)
{
case EPSPrivate:
RProperty::Set(KTelephonyAudioOutput,
KTelephonyAudioOutputPreference, EPSPublic);
break;
case EPSPublic:
RProperty::Set(KTelephonyAudioOutput,
KTelephonyAudioOutputPreference, EPSPrivate);
break;
default:
break;
}
My Application is Successfully working in N95 With Loudspeaker option.
But the same Application not activating Loudspeaker in E61 and N73, could any one tell me, why it's not supporting..
Could any one suggest me any other way to solve this problem.
Thank you in advance...
Regards,
Srinu..





