This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

missing call dial pad

Hi sir,

           In beaglebone black call dial pad,call receive ap and message app not found. how do i can enable these features in beaglebone  black

i am using android 4.2.2

Thank you,

  • Hello,

    You need to modify a file to get those options.
    Open device/ti/beagleboneblack/overlay/frameworks/base/core/res/res/values/config.xml; on line 25 change "<bool name="config_voice_capable">false</bool>" to "<bool name="config_voice_capable">true</bool>", and on line 28 change "<bool name="config_sms_capable">false</bool>" to "<bool name="config_sms_capable">true</bool>"
    This will add the dialer app and the contacts app to the image, and tell that your device is SMS capable.

    To add the messaging app and the radio interface layer, open device/ti/beagleboneblack/device.mk, and at the very bottom of the file add "$(call inherit-product, $(SRC_TARGET_DIR)/product/telephony.mk)"
    Now you need to recompile Android and reflash the new rootfs you generated.