diff options
author | Dianne Hackborn <hackbod@google.com> | 2013-03-22 17:24:57 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2013-03-22 17:24:57 -0700 |
commit | 0046d9614a57fe4f4e49692570810d424b1f4fe4 (patch) | |
tree | 3885826d6938deb5217121a0508f70af402b1513 /data/etc | |
parent | afaf14b9fbfe8943d845e2f01e8a401ad7a4d854 (diff) | |
download | frameworks_native-0046d9614a57fe4f4e49692570810d424b1f4fe4.zip frameworks_native-0046d9614a57fe4f4e49692570810d424b1f4fe4.tar.gz frameworks_native-0046d9614a57fe4f4e49692570810d424b1f4fe4.tar.bz2 |
Implement #8323587, #8323342, #8323590: new features.
8323587: Add feature for supporting app widgets
8323342: Add feature for replacing the home screen
8323590: Add feature for supporting input methods
The app widget service looks for the app widget feature
and refuses to work if it doesn't exist. I didn't do
this for the input method service because some devices
will probably want to still make use of that mechanism
without supporting third party input methods.
Change-Id: Ia358ccc6059d43f163d74810c7cbe9568a67ede9
Diffstat (limited to 'data/etc')
-rw-r--r-- | data/etc/handheld_core_hardware.xml | 3 | ||||
-rw-r--r-- | data/etc/tablet_core_hardware.xml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/data/etc/handheld_core_hardware.xml b/data/etc/handheld_core_hardware.xml index 9d2a0cb..290afc2 100644 --- a/data/etc/handheld_core_hardware.xml +++ b/data/etc/handheld_core_hardware.xml @@ -33,6 +33,9 @@ <feature name="android.hardware.microphone" /> <feature name="android.hardware.screen.portrait" /> <feature name="android.hardware.screen.landscape" /> + <feature name="android.software.app_widgets" /> + <feature name="android.software.home_screen" /> + <feature name="android.software.input_methods" /> <!-- devices with GPS must include android.hardware.location.gps.xml --> <!-- devices with an autofocus camera and/or flash must include either android.hardware.camera.autofocus.xml or diff --git a/data/etc/tablet_core_hardware.xml b/data/etc/tablet_core_hardware.xml index bf29fe4..207fc9a 100644 --- a/data/etc/tablet_core_hardware.xml +++ b/data/etc/tablet_core_hardware.xml @@ -34,6 +34,9 @@ <feature name="android.hardware.microphone" /> <feature name="android.hardware.screen.portrait" /> <feature name="android.hardware.screen.landscape" /> + <feature name="android.software.app_widgets" /> + <feature name="android.software.home_screen" /> + <feature name="android.software.input_methods" /> <!-- devices with GPS must include android.hardware.location.gps.xml --> <!-- devices with a rear-facing camera must include one of these as appropriate: android.hardware.camera.xml or |