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

Commit f478bfa8 authored by Aaron Huang's avatar Aaron Huang Committed by Automerger Merge Worker
Browse files

Merge "Use public resouce in android.R package" am: c110082a am: 18b7b7b3 am: 72f99156

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1956980

Change-Id: I9e80790dab7ddf569ef81ca1287ae13461a3d544
parents 46f106c2 72f99156
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -343,7 +343,7 @@ public final class IpSecAlgorithm implements Parcelable {
        // Load and validate the optional algorithm resource. Undefined or duplicate algorithms in
        // the resource are not allowed.
        final String[] resourceAlgos = systemResources.getStringArray(
                com.android.internal.R.array.config_optionalIpSecAlgorithms);
                android.R.array.config_optionalIpSecAlgorithms);
        for (String str : resourceAlgos) {
            if (!ALGO_TO_REQUIRED_FIRST_SDK.containsKey(str) || !enabledAlgos.add(str)) {
                // This error should be caught by CTS and never be thrown to API callers