| Index: build/android/pylib/device_settings.py
|
| diff --git a/build/android/pylib/device_settings.py b/build/android/pylib/device_settings.py
|
| index 73ffa72966da777e22d15ed495221269ec576aeb..97e966322ce08aed2ff36c47646beeecaeefb5b3 100644
|
| --- a/build/android/pylib/device_settings.py
|
| +++ b/build/android/pylib/device_settings.py
|
| @@ -29,16 +29,6 @@ def ConfigureContentSettings(device, desired_settings):
|
| desired_settings: A list of (table, [(key: value), ...]) for all
|
| settings to configure.
|
| """
|
| - try:
|
| - sdk_version = device.build_version_sdk
|
| - except device_errors.CommandFailedError as exc:
|
| - logging.error('Skipping content settings configuration: %s', str(exc))
|
| - return
|
| -
|
| - if sdk_version < constants.ANDROID_SDK_VERSION_CODES.JELLY_BEAN:
|
| - logging.error('Skipping content settings configuration due to outdated sdk')
|
| - return
|
| -
|
| if device.build_type == 'userdebug':
|
| for table, key_value in desired_settings:
|
| settings = content_settings.ContentSettings(table, device)
|
|
|