Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7447f3bd authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add privacy platform flags."

parents 0b409e8c 489239be
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -5800,6 +5800,11 @@ package android.provider {
    method public void onPropertyChanged(String, String, String);
  }
  public static interface DeviceConfig.Privacy {
    field public static final String NAMESPACE = "privacy";
    field public static final String PROPERTY_PERMISSIONS_HUB_ENABLED = "enable_permissions_hub";
  }
  public static interface DeviceConfig.Storage {
    field public static final String ISOLATED_STORAGE_ENABLED = "isolated_storage_enabled";
    field public static final String NAMESPACE = "storage";
+15 −0
Original line number Diff line number Diff line
@@ -153,6 +153,21 @@ public final class DeviceConfig {
        String PROPERTY_ATTENTION_SETTINGS = "attention_settings";
    }

    /**
     * Privacy related properties definitions.
     *
     * @hide
     */
    @SystemApi
    public interface Privacy {
        String NAMESPACE = "privacy";

        /**
         * Whether to show the Permissions Hub.
         */
        String PROPERTY_PERMISSIONS_HUB_ENABLED = "enable_permissions_hub";
    }

    /**
     * Telephony related properties definitions.
     *