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

Commit 954f15ac authored by Hawkwood Glazier's avatar Hawkwood Glazier Committed by Android (Google) Code Review
Browse files

Merge "Whitelist -> Allowlist" into tm-qpr-dev

parents 2b9c9c23 cbf072c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@
    <integer name="watch_heap_limit">256000</integer>

    <!-- SystemUI Plugins that can be loaded on user builds. -->
    <string-array name="config_pluginWhitelist" translatable="false">
    <string-array name="config_pluginAllowlist" translatable="false">
        <item>com.android.systemui</item>
    </string-array>

+1 −1
Original line number Diff line number Diff line
@@ -121,6 +121,6 @@ public abstract class PluginsModule {
    @Provides
    @Named(PLUGIN_PRIVILEGED)
    static List<String> providesPrivilegedPlugins(Context context) {
        return Arrays.asList(context.getResources().getStringArray(R.array.config_pluginWhitelist));
        return Arrays.asList(context.getResources().getStringArray(R.array.config_pluginAllowlist));
    }
}