InterviewSolution
| 1. |
When Making A Voice Call Using Itapi_makevoicecall, Responding No To The Privacy Alert Hangs The Application. What Is The Workaround? |
|
Answer» This is a BUG in BREW SDK version 1.0.1, and will be fixed in an upcoming release. The recommended workaround for BREW SDK Version 1.0.1 is for the user to PRESS 'No' twice (i.e. press Select Key twice). When the Privacy Alert Yes/No dialog is displayed, all key EVENTS up until the first Select key press GO to the Dialog. After the first Select key (for the dialog), subsequent key events go to the application. Steps are outlined below:
retValue = ITAPI_MakeVoiceCall(pMe->p_tapi, PHONE_NUM,
case EVT_KEY: if (wParam == AVK_SELECT && pMe->madeTapiCall ==
case EVT_APP_RESUME: This is a bug in BREW SDK version 1.0.1, and will be fixed in an upcoming release. The recommended workaround for BREW SDK Version 1.0.1 is for the user to press 'No' twice (i.e. press Select Key twice). When the Privacy Alert Yes/No dialog is displayed, all key events up until the first Select key press go to the Dialog. After the first Select key (for the dialog), subsequent key events go to the application. Steps are outlined below: retValue = ITAPI_MakeVoiceCall(pMe->p_tapi, PHONE_NUM, case EVT_KEY: if (wParam == AVK_SELECT && pMe->madeTapiCall == case EVT_APP_RESUME: |
|