From 7d93d8bcdc142cee6605fffca6760cbf346118f9 Mon Sep 17 00:00:00 2001 From: Vishwath Mohan Date: Tue, 29 Jan 2019 08:26:40 -0800 Subject: 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 --- src/com/android/settings/security/trustagent/TrustAgentManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3