OSDN Git Service

Fix a deprecated config string name for the storage manager settings.
authorDaniel Nishi <dhnishi@google.com>
Mon, 26 Sep 2016 18:37:52 +0000 (11:37 -0700)
committerDaniel Nishi <dhnishi@google.com>
Mon, 26 Sep 2016 18:40:55 +0000 (11:40 -0700)
The old string was used for configuration purposes, but the change was
removed. A previous patch accidentally used the old string for
choosing if the activity was exported or not.

Bug: 31621740

Change-Id: I9471e3a4c6d64d3fb8be7cbfcf058d35364892a5

AndroidManifest.xml
res/values/bools.xml

index f189627..e09a9d4 100644 (file)
         </activity>
 
         <activity android:name="Settings$AutomaticStorageManagerSettingsActivity"
-                  android:exported="@bool/config_has_storage_manager"
+                  android:exported="@bool/config_storage_manager_settings_enabled"
                   android:label="@string/automatic_storage_manager_settings"
                   android:taskAffinity="">
             <intent-filter android:priority="1">
index 71923ea..13609dc 100644 (file)
@@ -43,9 +43,6 @@
     <!-- Whether none security option is hide or not  (country specific). -->
     <bool name="config_hide_none_security_option">false</bool>
 
-    <!--Whether the storage manager exists. -->
-    <bool name="config_has_storage_manager">false</bool>
-
     <!--Whether help links are defined. -->
     <bool name="config_has_help">false</bool>
 </resources>