Hi all,
I am working on i.MX6q sabereSD board with Android 4.2
When I build and flash my image I am not able to find Phone app on menu
Can anybody tell me is there any change I need to make for phone app to be visible
I am able to find com.android.phone in pm list packages output but in menu no icon related to phone app is present
Regards
O S L Reddy
It is controled by the feature you declared in your board. You can have it as below:
imx6/sabresd_6dq.mk
@@ -29,7 +29,6 @@ PRODUCT_COPY_FILES += \
frameworks/native/data/etc/android.hardware.wifi.direct.xml:system/etc/permissions/android.hardware.wifi.direct.xml \
frameworks/native/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
frameworks/native/data/etc/android.hardware.sensor.accelerometer.xml:system/etc/permissions/android.hardware.sensor.accelerometer.xml \
+ frameworks/native/data/etc/android.hardware.telephony.gsm.xml:system/etc/permissions/android.hardware.telephony.gsm.xml \
frameworks/native/data/etc/android.hardware.faketouch.xml:system/etc/permissions/android.hardware.faketouch.xml \
frameworks/native/data/etc/android.hardware.sensor.barometer.xml:system/etc/permissions/android.hardware.sensor.barometer.xml \
frameworks/native/data/etc/android.hardware.camera.front.xml:system/etc/permissions/android.hardware.camera.front.xml \
+++ b/sabresd_6dq/required_hardware.xml
@@ -25,8 +25,6 @@
-->
<feature name="android.hardware.location" />
<feature name="android.hardware.location.network" />
+ <feature name="android.hardware.telephony" />
+ <feature name="android.hardware.telephony.gsm" />
<feature name="android.hardware.wifi" />
<feature name="android.hardware.touchscreen" />
<feature name="android.hardware.touchscreen.multitouch" />
Android 4.2.2 needs extra setting as below.
--
device/fsl/sabresd_6dq/overlay/frameworks/base/core/res/res/values/config.xml
@@ -183,7 +183,7 @@
<bool name="config_showNavigationBar">true</bool>
<!-- This device is not "voice capable"; it's data-only. -->
- <bool name="config_voice_capable">false</bool>
+ <bool name="config_voice_capable">true</bool>
<!-- Max space (in MB) allocated to DownloadManager to store the downloaded files
if they are to be stored in DownloadManager's data dir,
I Tried to install one third party phone app
In that When I am trying to call it is telling
Tellephony feature is not available in this device
Can anybody tell me how to enable telephony feature in sabereSD JB 4.2