summaryrefslogtreecommitdiff
authorTing Li <ting.li@amlogic.com>2018-06-07 09:20:49 (GMT)
committer Ting Li <ting.li@amlogic.com>2018-06-13 03:21:29 (GMT)
commit08852db0acd66241e2c38583c5130452e10361dc (patch)
treefd5a0c814e852e0fbe339131ccab0812eb0ebfef
parent5e2bbbb0cfc9865328a35a1006724a61a8e50b7d (diff)
downloaddarwin-08852db0acd66241e2c38583c5130452e10361dc.zip
darwin-08852db0acd66241e2c38583c5130452e10361dc.tar.gz
darwin-08852db0acd66241e2c38583c5130452e10361dc.tar.bz2
atv: use google atv overlay and remove older[4/9]
PD# 168302 Change-Id: Ibf83dbd55eb6861a476f44627255e978120f1444 atv: use google atv overlay and remove older
Diffstat
-rw-r--r--device.mk3
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_fade_in_bottom.xml25
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_fade_in_top.xml25
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_fade_out_bottom.xml25
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_fade_out_top.xml25
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_wallpaper_enter.xml24
-rw-r--r--overlay/frameworks/base/core/res/res/anim/atv_wallpaper_exit.xml24
-rw-r--r--overlay/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png3
-rw-r--r--overlay/frameworks/base/core/res/res/drawable/progress_volume.xml41
-rw-r--r--overlay/frameworks/base/core/res/res/layout/volume_adjust.xml49
-rw-r--r--overlay/frameworks/base/core/res/res/layout/volume_adjust_item.xml44
-rw-r--r--overlay/frameworks/base/core/res/res/values-sw600dp/dimens.xml22
-rw-r--r--overlay/frameworks/base/core/res/res/values-television/config.xml26
-rw-r--r--overlay/frameworks/base/core/res/res/values/colors_material.xml20
-rw-r--r--overlay/frameworks/base/core/res/res/values/config.xml104
-rw-r--r--overlay/frameworks/base/core/res/res/values/dimens.xml31
-rw-r--r--overlay/frameworks/base/core/res/res/values/styles.xml54
-rw-r--r--overlay/frameworks/base/core/res/res/values/themes_device_defaults.xml8
-rw-r--r--overlay/frameworks/base/core/res/res/xml/storage_list.xml48
-rw-r--r--overlay/frameworks/base/packages/SettingsLib/res/layout-television/settings_with_drawer.xml63
-rw-r--r--overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml27
-rw-r--r--overlay/frameworks/base/packages/SystemUI/res/layout/system_icons.xml27
-rw-r--r--overlay/frameworks/base/packages/SystemUI/res/values/config.xml5
-rwxr-xr-xoverlay/packages/apps/Bluetooth/res/values/config.xml20
24 files changed, 0 insertions, 743 deletions
diff --git a/device.mk b/device.mk
index c574e6c..3c41dfd 100644
--- a/device.mk
+++ b/device.mk
@@ -90,9 +90,6 @@ PRODUCT_AAPT_PREF_CONFIG := hdpi
# PRODUCT_CHARACTERISTICS := darwin,nosdcard
-DEVICE_PACKAGE_OVERLAYS := \
- device/amlogic/darwin/overlay
-
PRODUCT_TAGS += dalvik.gc.type-precise
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_fade_in_bottom.xml b/overlay/frameworks/base/core/res/res/anim/atv_fade_in_bottom.xml
deleted file mode 100644
index 10b8840..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_fade_in_bottom.xml
+++ b/dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, 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.
-*/
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
- android:zAdjustment="normal"
- android:interpolator="@android:interpolator/decelerate_quad"
- android:fromAlpha="1.0"
- android:toAlpha="1.0"
- android:duration="@android:integer/config_mediumAnimTime" />
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_fade_in_top.xml b/overlay/frameworks/base/core/res/res/anim/atv_fade_in_top.xml
deleted file mode 100644
index f414dbd..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_fade_in_top.xml
+++ b/dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, 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.
-*/
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
- android:zAdjustment="top"
- android:interpolator="@android:interpolator/decelerate_quad"
- android:fromAlpha="0.0"
- android:toAlpha="1.0"
- android:duration="@android:integer/config_mediumAnimTime" />
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_fade_out_bottom.xml b/overlay/frameworks/base/core/res/res/anim/atv_fade_out_bottom.xml
deleted file mode 100644
index 4a0d201..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_fade_out_bottom.xml
+++ b/dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, 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.
-*/
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
- android:zAdjustment="normal"
- android:interpolator="@android:interpolator/accelerate_quad"
- android:fromAlpha="1.0"
- android:toAlpha="1.0"
- android:duration="@android:integer/config_mediumAnimTime" />
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_fade_out_top.xml b/overlay/frameworks/base/core/res/res/anim/atv_fade_out_top.xml
deleted file mode 100644
index d0a733f..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_fade_out_top.xml
+++ b/dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2014, 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.
-*/
--->
-
-<alpha xmlns:android="http://schemas.android.com/apk/res/android"
- android:zAdjustment="top"
- android:interpolator="@android:interpolator/accelerate_quad"
- android:fromAlpha="1.0"
- android:toAlpha="0.0"
- android:duration="@android:integer/config_mediumAnimTime" />
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_enter.xml b/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_enter.xml
deleted file mode 100644
index b29104e..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_enter.xml
+++ b/dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*\
-** Copyright 2009, 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.
-*/
--->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android"
- android:interpolator="@interpolator/decelerate_quad">
- <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
- android:duration="@android:integer/config_mediumAnimTime" />
-</set> \ No newline at end of file
diff --git a/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_exit.xml b/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_exit.xml
deleted file mode 100644
index fb6a252..0000000
--- a/overlay/frameworks/base/core/res/res/anim/atv_wallpaper_exit.xml
+++ b/dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2009, 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.
-*/
--->
-
-<set xmlns:android="http://schemas.android.com/apk/res/android"
- android:interpolator="@interpolator/accelerate_quad">
- <alpha android:fromAlpha="1.0" android:toAlpha="0.0"
- android:duration="@android:integer/config_mediumAnimTime"/>
-</set> \ No newline at end of file
diff --git a/overlay/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png b/overlay/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
deleted file mode 100644
index f830df0..0000000
--- a/overlay/frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.png
+++ b/dev/null
@@ -1,3 +0,0 @@
-‰PNG
-
-
diff --git a/overlay/frameworks/base/core/res/res/drawable/progress_volume.xml b/overlay/frameworks/base/core/res/res/drawable/progress_volume.xml
deleted file mode 100644
index cdf3308..0000000
--- a/overlay/frameworks/base/core/res/res/drawable/progress_volume.xml
+++ b/dev/null
@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
-
- <item android:id="@android:id/background">
- <shape>
- <solid android:color="#44ffffff" />
- </shape>
- </item>
-
- <item android:id="@android:id/secondaryProgress">
- <clip>
- <shape>
- <solid android:color="#44ffffff" />
- </shape>
- </clip>
- </item>
-
- <item android:id="@android:id/progress">
- <clip>
- <shape>
- <solid android:color="#ff33b5e5" />
- </shape>
- </clip>
- </item>
-
-</layer-list>
diff --git a/overlay/frameworks/base/core/res/res/layout/volume_adjust.xml b/overlay/frameworks/base/core/res/res/layout/volume_adjust.xml
deleted file mode 100644
index be73a70..0000000
--- a/overlay/frameworks/base/core/res/res/layout/volume_adjust.xml
+++ b/dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/visible_panel"
- android:layout_width="480dp"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
-
- <LinearLayout
- android:id="@+id/slider_group"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical" />
-
- <ImageView
- android:id="@+id/expand_button_divider"
- android:layout_width="wrap_content"
- android:layout_height="32dp"
- android:layout_gravity="top"
- android:layout_marginBottom="16dp"
- android:layout_marginTop="16dp"
- android:scaleType="fitXY"
- android:src="?attr/dividerVertical" />
-
- <ImageView
- android:id="@+id/expand_button"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="top"
- android:background="?attr/selectableItemBackground"
- android:padding="16dp"
- android:src="@drawable/ic_sysbar_quicksettings" />
-
-</LinearLayout>
diff --git a/overlay/frameworks/base/core/res/res/layout/volume_adjust_item.xml b/overlay/frameworks/base/core/res/res/layout/volume_adjust_item.xml
deleted file mode 100644
index 484d449..0000000
--- a/overlay/frameworks/base/core/res/res/layout/volume_adjust_item.xml
+++ b/dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="80dp"
- android:layout_marginBottom="8dp"
- android:layout_marginTop="8dp"
- android:gravity="left|center_vertical"
- android:orientation="horizontal" >
-
- <ImageView
- android:id="@+id/stream_icon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="?attr/selectableItemBackground"
- android:padding="16dp" />
-
- <SeekBar
- android:id="@+id/seekbar"
- style="?android:attr/seekBarStyle"
- android:layout_width="0dp"
- android:layout_height="48dp"
- android:layout_marginRight="16dp"
- android:layout_weight="1"
- android:background="@android:color/transparent"
- android:padding="16dp"
- android:progressDrawable="@android:drawable/progress_volume"
- android:thumb="@null" />
-
-</LinearLayout>
diff --git a/overlay/frameworks/base/core/res/res/values-sw600dp/dimens.xml b/overlay/frameworks/base/core/res/res/values-sw600dp/dimens.xml
deleted file mode 100644
index a1919e5..0000000
--- a/overlay/frameworks/base/core/res/res/values-sw600dp/dimens.xml
+++ b/dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<resources>
-
- <!-- Height of the bottom navigation bar -->
- <dimen name="navigation_bar_height">0dp</dimen>
-
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values-television/config.xml b/overlay/frameworks/base/core/res/res/values-television/config.xml
deleted file mode 100644
index f77585c..0000000
--- a/overlay/frameworks/base/core/res/res/values-television/config.xml
+++ b/dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/*
-** Copyright 2015, 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.
-*/
--->
-
-<!-- These resources are around just to allow their values to be customized
- for TV products. Do not translate. -->
-<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
-
- <!-- Flags enabling default window features. See Window.java -->
- <bool name="config_defaultWindowFeatureOptionsPanel">true</bool>
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values/colors_material.xml b/overlay/frameworks/base/core/res/res/values/colors_material.xml
deleted file mode 100644
index ca889a5..0000000
--- a/overlay/frameworks/base/core/res/res/values/colors_material.xml
+++ b/dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<!-- Colors specific to Material themes. -->
-<resources>
- <item name="highlight_alpha_material_light" format="float" type="dimen">0.30</item>
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values/config.xml b/overlay/frameworks/base/core/res/res/values/config.xml
deleted file mode 100644
index 1ad27aa..0000000
--- a/overlay/frameworks/base/core/res/res/values/config.xml
+++ b/dev/null
@@ -1,104 +0,0 @@
-<resources>
-
- <!-- This string array should be overridden by the device to present a list of network
- attributes. This is used by the connectivity manager to decide which networks can coexist
- based on the hardware -->
- <!-- An Array of "[Connection name],[ConnectivityManager.TYPE_xxxx],
- [associated radio-type],[priority],[restoral-timer(ms)],[dependencyMet] -->
- <!-- the 5th element "restore-time" indicates the number of milliseconds to delay
- before automatically restore the default connection. Set -1 if the connection
- does not require auto-restore. -->
- <!-- the 6th element indicates boot-time dependency-met value. -->
- <string-array translatable="false" name="networkAttributes">
- <item>"wifi,1,1,1,-1,true"</item>
- <item>"ethernet,9,9,9,-1,true"</item>
- <item>"pppoe,18,18,1,-1,true"</item>
- </string-array>
- <!-- Array of ConnectivityManager.TYPE_xxxx values allowable for tethering__-->
- <!-- Common options are [1, 4] for TYPE_WIFI and TYPE_MOBILE_DUN or
- <!== [0,1,5,7] for TYPE_MOBILE, TYPE_WIFI, TYPE_MOBILE_HIPRI and TYPE_BLUETOOTH -->
- <!-- [18,9] for TYPE_PPPOE, TYPE_ETHERNET -->
- <integer-array translatable="false" name="config_tether_upstream_types">
- <item>1</item>
- <item>18</item>
- <item>9</item>
- </integer-array>
- <!-- This string array should be overridden by the device to present a list of radio
- attributes. This is used by the connectivity manager to decide which networks can coexist
- based on the hardware -->
- <!-- An Array of "[ConnectivityManager connectionType],
- [# simultaneous connection types]" -->
- <string-array translatable="false" name="radioAttributes">
- <item>"1,1"</item>
- <item>"9,1"</item>
- <item>"18,1"</item>
- </string-array>
-
- <!-- List of regexpressions describing the interface (if any) that represent tetherable
- Wifi interfaces. If the device doesn't want to support tethering over Wifi this
- should be empty. An example would be "softap.*" -->
- <string-array translatable="false" name="config_tether_wifi_regexs">
- <item>"wlan0"</item>
- </string-array>
-
- <!-- If supported and enabled, are dreams activated when asleep and charging? (by default) -->
- <bool name="config_dreamsActivatedOnSleepByDefault">true</bool>
- <!-- ComponentName of the default dream (Settings.Secure.DEFAULT_SCREENSAVER_COMPONENT) -->
- <string name="config_dreamsDefaultComponent">com.android.deskclock/com.android.deskclock.Screensaver</string>
-
- <!-- Whether WiFi display is supported by this device.
- There are many prerequisites for this feature to work correctly.
- Here are a few of them:
- * The WiFi radio must support WiFi P2P.
- * The WiFi radio must support concurrent connections to the WiFi display and
- to an access point.
- * The Audio Flinger audio_policy.conf file must specify a rule for the "r_submix"
- remote submix module. This module is used to record and stream system
- audio output to the WiFi display encoder in the media server.
- * The remote submix module "audio.r_submix.default" must be installed on the device.
- * The device must be provisioned with HDCP keys (for protected content).
- -->
- <!--<bool name="config_enableWifiDisplay">true</bool>-->
- <!--<bool name="config_enableWifiP2pAutoAcceptInvitation">true</bool>-->
- <bool name="config_sms_capable">false</bool>
- <!-- Flag indicating whether the current device is "voice capable".
- If true, this means that the device supports circuit-switched
- (i.e. voice) phone calls over the telephony network, and is
- allowed to display the in-call UI while a cellular voice call is
- active. This can be overridden to false for "data only" devices
- which can't make voice calls and don't support any in-call UI.
-
- Note: this flag is subtly different from the
- PackageManager.FEATURE_TELEPHONY system feature, which is
- available on *any* device with a telephony radio, even if the
- device is data-only. -->
- <bool name="config_voice_capable">false</bool>
-
- <!-- Enable overlay for all location components. -->
- <bool name="config_enableNetworkLocationOverlay" translatable="false">true</bool>
- <bool name="config_enableFusedLocationOverlay" translatable="false">true</bool>
- <bool name="config_enableGeocoderOverlay" translatable="false">true</bool>
- <bool name="config_enableGeofenceOverlay" translatable="false">true</bool>
-
- <!--
- Sets the package names whose certificates should be used to
- verify location providers are allowed to be loaded.
- -->
- <string-array name="config_locationProviderPackageNames" translatable="false">
- <item>com.google.android.gms</item>
- <item>com.android.location.fused</item>
- </string-array>
- <!-- Maximum number of supported users -->
- <integer name="config_multiuserMaximumUsers">2</integer>
-
- <bool name="config_defaultInTouchMode">false</bool>
- <!-- Whether the device uses the default focus highlight when focus state isn't specified. -->
- <bool name="config_useDefaultFocusHighlight">false</bool>
-
- <!-- Keyguard component -->
- <string name="config_keyguardComponent" translatable="false">com.droidlogic/com.droidlogic.StubKeyguardService</string>
-
- <!-- disable wallpaper, which may consume too much boot time -->
- <!-- cannot disable wallpaper, com.android.settings will crash! -->
- <!--bool name="config_enableWallpaperService">false</bool-->
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values/dimens.xml b/overlay/frameworks/base/core/res/res/values/dimens.xml
deleted file mode 100644
index 95a85df..0000000
--- a/overlay/frameworks/base/core/res/res/values/dimens.xml
+++ b/dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2014 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.
--->
-
-<resources>
-
- <!-- Height of the status bar -->
- <dimen name="status_bar_height">0dp</dimen>
-
- <!-- Height of the bottom navigation / system bar -->
- <dimen name="navigation_bar_height">0dp</dimen>
-
- <!-- Height of the bottom navigation bar in landscape -->
- <dimen name="navigation_bar_height_landscape">0dp</dimen>
-
- <!-- Width of the navigation bar when it is placed vertically on the screen -->
- <dimen name="navigation_bar_width">42dp</dimen>
-
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values/styles.xml b/overlay/frameworks/base/core/res/res/values/styles.xml
deleted file mode 100644
index 23d480e..0000000
--- a/overlay/frameworks/base/core/res/res/values/styles.xml
+++ b/dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- Copyright (C) 2006 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.
--->
-
-<resources>
-
- <!-- Standard animations for wallpapers. -->
- <style name="Animation.Wallpaper">
- <item name="windowEnterAnimation">@anim/atv_wallpaper_enter</item>
- <item name="windowExitAnimation">@anim/atv_wallpaper_exit</item>
- </style>
-
- <!-- Standard animations for a full-screen window or activity. -->
- <style name="Animation.Activity">
- <item name="activityOpenEnterAnimation">@anim/atv_fade_in_top</item>
- <item name="activityOpenExitAnimation">@anim/atv_fade_in_bottom</item>
- <item name="activityCloseEnterAnimation">@anim/atv_fade_out_bottom</item>
- <item name="activityCloseExitAnimation">@anim/atv_fade_out_top</item>
-
- <item name="taskOpenEnterAnimation">@anim/atv_fade_in_top</item>
- <item name="taskOpenExitAnimation">@anim/atv_fade_in_bottom</item>
- <item name="taskCloseEnterAnimation">@anim/atv_fade_out_bottom</item>
- <item name="taskCloseExitAnimation">@anim/atv_fade_out_top</item>
-
- <item name="taskToFrontEnterAnimation">@anim/atv_fade_in_top</item>
- <item name="taskToFrontExitAnimation">@anim/atv_fade_in_bottom</item>
- <item name="taskToBackEnterAnimation">@anim/atv_fade_out_bottom</item>
- <item name="taskToBackExitAnimation">@anim/atv_fade_out_top</item>
-
- <item name="wallpaperOpenEnterAnimation">@anim/atv_fade_out_bottom</item>
- <item name="wallpaperOpenExitAnimation">@anim/atv_fade_out_top</item>
- <item name="wallpaperCloseEnterAnimation">@anim/atv_fade_in_top</item>
- <item name="wallpaperCloseExitAnimation">@anim/atv_fade_in_bottom</item>
-
- <item name="wallpaperIntraOpenEnterAnimation">@anim/atv_fade_in_top</item>
- <item name="wallpaperIntraOpenExitAnimation">@anim/atv_fade_in_bottom</item>
- <item name="wallpaperIntraCloseEnterAnimation">@anim/atv_fade_out_bottom</item>
- <item name="wallpaperIntraCloseExitAnimation">@anim/atv_fade_out_top</item>
- </style>
-
-</resources>
diff --git a/overlay/frameworks/base/core/res/res/values/themes_device_defaults.xml b/overlay/frameworks/base/core/res/res/values/themes_device_defaults.xml
deleted file mode 100644
index fc83ef7..0000000
--- a/overlay/frameworks/base/core/res/res/values/themes_device_defaults.xml
+++ b/dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<resources>
-
- <style name="Theme.DeviceDefault.DialogWhenLarge" parent="Theme.Material.DialogWhenLarge.NoActionBar" />
- <style name="Theme.DeviceDefault.Light.DialogWhenLarge" parent="Theme.Material.Light.DialogWhenLarge.NoActionBar" />
-
-</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
deleted file mode 100644
index 1f3fdcc..0000000
--- a/overlay/frameworks/base/core/res/res/xml/storage_list.xml
+++ b/dev/null
@@ -1,48 +0,0 @@
-<?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.
-*/
--->
-
-<!-- See storage config details at http://source.android.com/tech/storage/ -->
-
-<StorageList xmlns:android="http://schemas.android.com/apk/res/android">
- <!-- removable is not set in nosdcard product -->
- <storage
- android:storageDescription="@string/storage_internal"
- android:primary="true"
- android:emulated="true"
- android:mtpReserve="100"/>
-
- <storage
- android:mountPoint="/storage/sdcard1"
- android:storageDescription="@string/storage_sd_card"
- android:removable="true"
- android:maxFileSize="4096" />
-
- <storage
- android:mountPoint="/storage/udisk0"
- android:storageDescription="@string/storage_usb"
- android:removable="true"
- android:maxFileSize="4096" />
-
- <storage
- android:mountPoint="/storage/udisk1"
- android:storageDescription="@string/storage_usb"
- android:removable="true"
- android:maxFileSize="4096" />
-
-</StorageList>
diff --git a/overlay/frameworks/base/packages/SettingsLib/res/layout-television/settings_with_drawer.xml b/overlay/frameworks/base/packages/SettingsLib/res/layout-television/settings_with_drawer.xml
deleted file mode 100644
index a68a44e..0000000
--- a/overlay/frameworks/base/packages/SettingsLib/res/layout-television/settings_with_drawer.xml
+++ b/dev/null
@@ -1,63 +0,0 @@
-<!--
- Copyright (C) 2015 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.
--->
-<android.support.v4.widget.DrawerLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/drawer_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?android:attr/colorPrimaryDark">
- <!-- The main content view -->
- <LinearLayout
- android:id="@+id/content_parent"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:fitsSystemWindows="true" >
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="?android:attr/actionBarStyle">
- <Toolbar
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/action_bar"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:navigationContentDescription="@*android:string/action_bar_up_description"
- android:theme="?android:attr/actionBarTheme"
- style="?android:attr/toolbarStyle"
- android:background="?android:attr/colorPrimary" />
- </FrameLayout>
- <FrameLayout
- android:id="@+id/content_header_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- style="?android:attr/actionBarStyle" />
- <FrameLayout
- android:id="@+id/content_frame"
- android:layout_width="match_parent"
- android:layout_height="fill_parent"
- android:background="?android:attr/windowBackground" />
- </LinearLayout>
- <!-- The navigation drawer -->
- <ListView android:id="@+id/left_drawer"
- android:layout_width="300dp"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:choiceMode="singleChoice"
- android:divider="@android:color/transparent"
- android:dividerHeight="0dp"
- android:background="?android:attr/colorBackground" />
-</android.support.v4.widget.DrawerLayout>
diff --git a/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml b/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml
deleted file mode 100644
index 67d7544..0000000
--- a/overlay/frameworks/base/packages/SettingsProvider/res/values/defaults.xml
+++ b/dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-/**
- * Copyright (c) 2009, 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.
- */
--->
-<resources>
- <!-- Do not enable auto rotation switching -->
- <bool name="def_accelerometer_rotation">false</bool>
- <integer name="def_screen_off_timeout">3600000</integer>
- <bool name="def_wifi_display_on">true</bool>
- <!--<string name="config_defaultIME">com.amlogic.inputmethod.remote/.RemoteIME</string>-->
- <bool name="def_wifi_on">true</bool>
- <bool name="def_lockscreen_disabled">true</bool>
-</resources>
diff --git a/overlay/frameworks/base/packages/SystemUI/res/layout/system_icons.xml b/overlay/frameworks/base/packages/SystemUI/res/layout/system_icons.xml
deleted file mode 100644
index a2121b7..0000000
--- a/overlay/frameworks/base/packages/SystemUI/res/layout/system_icons.xml
+++ b/dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/system_icons"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center_vertical">
-
- <com.android.keyguard.AlphaOptimizedLinearLayout android:id="@+id/statusIcons"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center_vertical"
- android:orientation="horizontal"/>
-
- <include layout="@layout/signal_cluster_view"
- android:id="@+id/signal_cluster"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="2.5dp"/>
-
- <!-- battery must be padded below to match assets -->
- <com.android.systemui.BatteryMeterView android:id="@+id/battery"
- android:layout_height="14.5dp"
- android:layout_width="9.5dp"
- android:layout_marginBottom="@dimen/battery_margin_bottom"
- android:layout_marginStart="7dp"
- android:visibility="gone"/>
-</LinearLayout> \ No newline at end of file
diff --git a/overlay/frameworks/base/packages/SystemUI/res/values/config.xml b/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
deleted file mode 100644
index bda91ec..0000000
--- a/overlay/frameworks/base/packages/SystemUI/res/values/config.xml
+++ b/dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
- <bool name="config_enableKeyguardService">false</bool>
- <string name="config_statusBarComponent" translatable="false">com.android.systemui.statusbar.tv.TvStatusBar</string>
-</resources>
diff --git a/overlay/packages/apps/Bluetooth/res/values/config.xml b/overlay/packages/apps/Bluetooth/res/values/config.xml
deleted file mode 100755
index aa70773..0000000
--- a/overlay/packages/apps/Bluetooth/res/values/config.xml
+++ b/dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Copyright (C) 2009-2012 Broadcom Corporation
- 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.
--->
-<resources>
- <bool name="profile_supported_opp">false</bool>
- <bool name="profile_supported_a2dp">false</bool>
- <bool name="profile_supported_a2dp_sink">true</bool>
- <bool name="profile_supported_avrcp_controller">true</bool>
-</resources>