summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/security
diff options
context:
space:
mode:
authorVishwath Mohan <vishwath@google.com>2019-01-29 08:26:40 -0800
committerVishwath Mohan <vishwath@google.com>2019-01-31 20:19:32 +0000
commit7d93d8bcdc142cee6605fffca6760cbf346118f9 (patch)
tree0ef49ba3e6ec4f9bd0bb9ef4933c7174e1dfcb0b /src/com/android/settings/security
parent3a7cbacdcd82923a651842ba07fb39e8ef107716 (diff)
downloadpackages_apps_Settings-7d93d8bcdc142cee6605fffca6760cbf346118f9.tar.gz
packages_apps_Settings-7d93d8bcdc142cee6605fffca6760cbf346118f9.tar.bz2
packages_apps_Settings-7d93d8bcdc142cee6605fffca6760cbf346118f9.zip
Allow multiple trust agents
This CL is essentially a one-line change that sets the ONLY_ONE_TRUST_AGENT boolean to false. Bug: 111431046 Test: Tested manually that this works correctly Change-Id: Ia8f06235467e3223ef1e441a62d941a64a2d7c93
Diffstat (limited to 'src/com/android/settings/security')
-rw-r--r--src/com/android/settings/security/trustagent/TrustAgentManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/security/trustagent/TrustAgentManager.java b/src/com/android/settings/security/trustagent/TrustAgentManager.java
index e039db8d8a..f5c693aba2 100644
--- a/src/com/android/settings/security/trustagent/TrustAgentManager.java
+++ b/src/com/android/settings/security/trustagent/TrustAgentManager.java
@@ -53,7 +53,7 @@ import java.util.List;
public class TrustAgentManager {
// Only allow one trust agent on the platform.
- private static final boolean ONLY_ONE_TRUST_AGENT = true;
+ private static final boolean ONLY_ONE_TRUST_AGENT = false;
public static class TrustAgentComponentInfo {
public ComponentName componentName;