diff options
author | Daniel Hillenbrand <daniel.hillenbrand@codeworkx.de> | 2012-07-23 16:37:14 +0200 |
---|---|---|
committer | Daniel Hillenbrand <daniel.hillenbrand@codeworkx.de> | 2012-07-23 16:37:14 +0200 |
commit | 3113d3f4c11ac1635948eaed09e70838890ff358 (patch) | |
tree | 0918ce1ff8daac5c1b9b50c34211acdaaddd0ada /common-overlay | |
parent | 5c80d942c5aa960ce08308c5a03b47b4bb3f2b08 (diff) | |
download | device_samsung_p5100-3113d3f4c11ac1635948eaed09e70838890ff358.zip device_samsung_p5100-3113d3f4c11ac1635948eaed09e70838890ff358.tar.gz device_samsung_p5100-3113d3f4c11ac1635948eaed09e70838890ff358.tar.bz2 |
jellybeaned
Diffstat (limited to 'common-overlay')
-rw-r--r-- | common-overlay/frameworks/base/core/res/res/values/config.xml | 8 | ||||
-rw-r--r-- | common-overlay/frameworks/base/core/res/res/xml/storage_list.xml | 6 |
2 files changed, 8 insertions, 6 deletions
diff --git a/common-overlay/frameworks/base/core/res/res/values/config.xml b/common-overlay/frameworks/base/core/res/res/values/config.xml index 2f4fb55..9a9d9a2 100644 --- a/common-overlay/frameworks/base/core/res/res/values/config.xml +++ b/common-overlay/frameworks/base/core/res/res/values/config.xml @@ -177,14 +177,17 @@ <!-- Boolean indicating whether the wifi chipset has dual frequency band support --> <bool translatable="false" name="config_wifi_dual_band_support">true</bool> + <!-- Boolean indicating whether the wifi chipset has p2p support --> + <bool translatable="false" name="config_wifi_p2p_support">true</bool> + <!-- Boolean indicating whether the wifi chipset has background scan support --> <bool translatable="false" name="config_wifi_background_scan_support">true</bool> <!-- Component name of the service providing network location support. --> - <string name="config_networkLocationProvider">com.google.android.location.NetworkLocationProvider</string> + <string name="config_networkLocationProviderPackageName">com.google.android.location.NetworkLocationProvider</string> <!-- Component name of the service providing geocoder API support. --> - <string name="config_geocodeProvider">com.google.android.location.GeocodeProvider</string> + <string name="config_geocodeProviderPackageName">com.google.android.location.GeocodeProvider</string> <!-- Vibrator pattern for feedback about a long screen/key press --> <integer-array name="config_longPressVibePattern"> @@ -205,5 +208,4 @@ <item>50</item> </integer-array> - <bool name="config_forceDisableHardwareKeyboard">true</bool> </resources> diff --git a/common-overlay/frameworks/base/core/res/res/xml/storage_list.xml b/common-overlay/frameworks/base/core/res/res/xml/storage_list.xml index a96fca9..30c5bd6 100644 --- a/common-overlay/frameworks/base/core/res/res/xml/storage_list.xml +++ b/common-overlay/frameworks/base/core/res/res/xml/storage_list.xml @@ -33,18 +33,18 @@ --> <StorageList xmlns:android="http://schemas.android.com/apk/res/android"> - <storage android:mountPoint="/mnt/sdcard" + <storage android:mountPoint="/storage/sdcard0" android:storageDescription="@string/storage_internal" android:primary="true" android:emulated="true" android:mtpReserve="100" /> - <storage android:mountPoint="/mnt/extSdCard" + <storage android:mountPoint="/storage/sdcard1" android:storageDescription="@string/storage_sd_card" android:primary="false" android:removable="true" /> - <storage android:mountPoint="/mnt/usbdisk" + <storage android:mountPoint="/storage/usbdisk0" android:storageDescription="@string/storage_usb" android:primary="false" android:removable="true" /> |