diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2013-05-02 19:00:07 +0200 |
---|---|---|
committer | Paul Kocialkowski <contact@paulk.fr> | 2013-05-02 19:00:07 +0200 |
commit | 8456bda73d7ce443e08c4f08715bd38a39eec641 (patch) | |
tree | 5bd0946e0e322355b77da989718581c7b380c92e /overlay | |
parent | 12f4da3dc7284309694abecbc3dea4245168136b (diff) | |
download | device_goldelico_gta04-8456bda73d7ce443e08c4f08715bd38a39eec641.zip device_goldelico_gta04-8456bda73d7ce443e08c4f08715bd38a39eec641.tar.gz device_goldelico_gta04-8456bda73d7ce443e08c4f08715bd38a39eec641.tar.bz2 |
Initial commit for Replicant 4.0
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'overlay')
-rw-r--r-- | overlay/frameworks/base/core/res/res/values/config.xml | 14 | ||||
-rw-r--r-- | overlay/frameworks/base/core/res/res/xml/storage_list.xml | 41 |
2 files changed, 46 insertions, 9 deletions
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml index c610e11..b42bacf 100644 --- a/overlay/frameworks/base/core/res/res/values/config.xml +++ b/overlay/frameworks/base/core/res/res/values/config.xml @@ -18,14 +18,10 @@ --> <resources> - <bool name="cm_default_has_soft_buttons">true</bool> - <bool name="cm_default_soft_buttons_left">true</bool> + <!-- If this is true, the screen will come on when you unplug usb/power/whatever. --> + <bool name="config_unplugTurnsOnScreen">true</bool> - <bool name="cm_default_show_soft_home">true</bool> - <bool name="cm_default_show_soft_menu">true</bool> - <bool name="cm_default_show_soft_back">false</bool> - <bool name="cm_default_show_soft_search">false</bool> - <bool name="cm_default_show_soft_quick_na">false</bool> - - <bool name="cm_default_home_on_longpress_back">true</bool> + <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be + autodetected from the Configuration. --> + <bool name="config_showNavigationBar">true</bool> </resources> diff --git a/overlay/frameworks/base/core/res/res/xml/storage_list.xml b/overlay/frameworks/base/core/res/res/xml/storage_list.xml new file mode 100644 index 0000000..ba086a1 --- /dev/null +++ b/overlay/frameworks/base/core/res/res/xml/storage_list.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- +** +** Copyright 2011, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License") +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ +--> + +<!-- The <device> element should contain one or more <storage> elements. + Exactly one of these should have the attribute primary="true". + This storage will be the primary external storage and should have mountPoint="/mnt/sdcard". + Each storage should have both a mountPoint and storageDescription attribute. + The following attributes are optional: + + primary: (boolean) this storage is the primary external storage + removable: (boolean) this is removable storage (for example, a real SD card) + emulated: (boolean) the storage is emulated via the FUSE sdcard daemon + mtpReserve: (integer) number of megabytes of storage MTP should reserve for free storage + (used for emulated storage that is shared with system's data partition) + + A storage should not have both emulated and removable set to true +--> + +<StorageList xmlns:android="http://schemas.android.com/apk/res/android"> + <storage android:mountPoint="/mnt/sdcard" + android:storageDescription="@string/storage_internal" + android:primary="true" + android:removable="false" + android:allowMassStorage="true" /> +</StorageList> |