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

Commit cbf072c2 authored by Hawkwood Glazier's avatar Hawkwood Glazier
Browse files

Whitelist -> Allowlist

Bug: 268662350
Test: Manually checked device allowlist
Change-Id: I8f264c4bcda7be12c3f2e5242bf689df66199e84
parent 9fe66836
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));
    }
}