1 /* 2 * Copyright (C) 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package android.provider.settings.backup; 18 19 import android.provider.Settings; 20 21 /** Device specific settings list */ 22 public class DeviceSpecificSettings { 23 /** 24 * The settings values which should only be restored if the target device is the 25 * same as the source device 26 * 27 * NOTE: Settings are backed up and restored in the order they appear 28 * in this array. If you have one setting depending on another, 29 * make sure that they are ordered appropriately. 30 * 31 * @hide 32 */ 33 public static final String[] DEVICE_SPECIFIC_SETTINGS_TO_BACKUP = { 34 Settings.Secure.DISPLAY_DENSITY_FORCED, 35 Settings.Secure.DEVICE_STATE_ROTATION_LOCK 36 }; 37 } 38