diff options
| author | Aaron Huang <huangaaron@google.com> | 2021-12-28 03:23:02 +0800 |
|---|---|---|
| committer | Aaron Huang <huangaaron@google.com> | 2022-01-03 17:07:20 +0800 |
| commit | 6acd545fe15f016db5724e156b0d0e8ac8b751ba (patch) | |
| tree | 1aa538299aad21ffcc78763f8cd5a8aa2a020a5c /framework-t/src/android/net/IpSecAlgorithm.java | |
| parent | 8a5f603b8f7ce5c82e83fcd855367c7780551b2f (diff) | |
Use public resouce in android.R package
Use public resource since IpSec is planed to be moved into
Connectivity mainline module.
Bug: 204153604
Test: build
Change-Id: I0aafef6b9b08307c3aebce597a2dd24925c6b09a
Diffstat (limited to 'framework-t/src/android/net/IpSecAlgorithm.java')
| -rw-r--r-- | framework-t/src/android/net/IpSecAlgorithm.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework-t/src/android/net/IpSecAlgorithm.java b/framework-t/src/android/net/IpSecAlgorithm.java index a84e7a9c63..10a22ac360 100644 --- a/framework-t/src/android/net/IpSecAlgorithm.java +++ b/framework-t/src/android/net/IpSecAlgorithm.java @@ -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 |
