Merge "Revert "Expose hidden resources used in telephony/common"" into rvc-dev
This commit is contained in:
@@ -252,9 +252,6 @@ package android {
|
||||
|
||||
public static final class R.array {
|
||||
field public static final int config_keySystemUuidMapping = 17235973; // 0x1070005
|
||||
field public static final int config_restrictedPreinstalledCarrierApps = 17235975; // 0x1070007
|
||||
field public static final int config_sms_enabled_locking_shift_tables = 17235977; // 0x1070009
|
||||
field public static final int config_sms_enabled_single_shift_tables = 17235976; // 0x1070008
|
||||
field public static final int simColors = 17235974; // 0x1070006
|
||||
}
|
||||
|
||||
@@ -307,7 +304,6 @@ package android {
|
||||
field public static final int config_helpPackageNameKey = 17039387; // 0x104001b
|
||||
field public static final int config_helpPackageNameValue = 17039388; // 0x104001c
|
||||
field public static final int config_systemGallery = 17039402; // 0x104002a
|
||||
field public static final int low_memory = 17039403; // 0x104002b
|
||||
}
|
||||
|
||||
public static final class R.style {
|
||||
|
||||
@@ -246,12 +246,6 @@ ProtectedMember: android.service.notification.NotificationAssistantService#attac
|
||||
|
||||
|
||||
|
||||
ResourceValueFieldName: android.R.array#config_sms_enabled_locking_shift_tables:
|
||||
Expected resource name in `android.R.array` to be in the `fooBarBaz` style, was `config_sms_enabled_locking_shift_tables`
|
||||
ResourceValueFieldName: android.R.array#config_sms_enabled_single_shift_tables:
|
||||
Expected resource name in `android.R.array` to be in the `fooBarBaz` style, was `config_sms_enabled_single_shift_tables`
|
||||
|
||||
|
||||
SamShouldBeLast: android.accounts.AccountManager#addAccount(String, String, String[], android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback<android.os.Bundle>, android.os.Handler):
|
||||
|
||||
SamShouldBeLast: android.accounts.AccountManager#addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener, android.os.Handler, boolean):
|
||||
|
||||
@@ -3044,8 +3044,6 @@
|
||||
<public name="config_defaultCallScreening" />
|
||||
<!-- @hide @SystemApi @TestApi -->
|
||||
<public name="config_systemGallery" />
|
||||
<!-- @hide @SystemApi -->
|
||||
<public name="low_memory" />
|
||||
</public-group>
|
||||
|
||||
<public-group type="bool" first-id="0x01110005">
|
||||
@@ -3073,12 +3071,6 @@
|
||||
<public-group type="array" first-id="0x01070006">
|
||||
<!-- @hide @SystemApi -->
|
||||
<public name="simColors" />
|
||||
<!-- @hide @SystemApi -->
|
||||
<public name="config_restrictedPreinstalledCarrierApps" />
|
||||
<!-- @hide @SystemApi -->
|
||||
<public name="config_sms_enabled_single_shift_tables" />
|
||||
<!-- @hide @SystemApi -->
|
||||
<public name="config_sms_enabled_locking_shift_tables" />
|
||||
</public-group>
|
||||
|
||||
<public-group type="string" first-id="0x0104002c">
|
||||
|
||||
@@ -30,6 +30,7 @@ import android.telephony.TelephonyManager;
|
||||
import android.util.ArrayMap;
|
||||
import android.util.Log;
|
||||
|
||||
import com.android.internal.R;
|
||||
import com.android.internal.annotations.VisibleForTesting;
|
||||
import com.android.internal.telephony.util.ArrayUtils;
|
||||
|
||||
@@ -162,7 +163,7 @@ public final class CarrierAppUtils {
|
||||
for (ApplicationInfo ai : candidates) {
|
||||
String packageName = ai.packageName;
|
||||
String[] restrictedCarrierApps = Resources.getSystem().getStringArray(
|
||||
android.R.array.config_restrictedPreinstalledCarrierApps);
|
||||
R.array.config_restrictedPreinstalledCarrierApps);
|
||||
boolean hasPrivileges = telephonyManager != null
|
||||
&& telephonyManager.checkCarrierPrivilegesForPackageAnyPhone(packageName)
|
||||
== TelephonyManager.CARRIER_PRIVILEGE_STATUS_HAS_ACCESS
|
||||
|
||||
@@ -19,10 +19,12 @@ package com.android.internal.telephony;
|
||||
import android.compat.annotation.UnsupportedAppUsage;
|
||||
import android.content.res.Resources;
|
||||
import android.os.Build;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.text.TextUtils;
|
||||
import android.util.SparseIntArray;
|
||||
|
||||
import com.android.internal.R;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.ArrayList;
|
||||
@@ -1087,10 +1089,8 @@ public class GsmAlphabet {
|
||||
private static void enableCountrySpecificEncodings() {
|
||||
Resources r = Resources.getSystem();
|
||||
// See comments in frameworks/base/core/res/res/values/config.xml for allowed values
|
||||
sEnabledSingleShiftTables = r.getIntArray(
|
||||
android.R.array.config_sms_enabled_single_shift_tables);
|
||||
sEnabledLockingShiftTables = r.getIntArray(
|
||||
android.R.array.config_sms_enabled_locking_shift_tables);
|
||||
sEnabledSingleShiftTables = r.getIntArray(R.array.config_sms_enabled_single_shift_tables);
|
||||
sEnabledLockingShiftTables = r.getIntArray(R.array.config_sms_enabled_locking_shift_tables);
|
||||
|
||||
if (sEnabledSingleShiftTables.length > 0) {
|
||||
sHighestEnabledSingleShiftCode =
|
||||
|
||||
@@ -60,7 +60,8 @@ public final class SqliteWrapper {
|
||||
@UnsupportedAppUsage
|
||||
public static void checkSQLiteException(Context context, SQLiteException e) {
|
||||
if (isLowMemory(e)) {
|
||||
Toast.makeText(context, android.R.string.low_memory, Toast.LENGTH_SHORT).show();
|
||||
Toast.makeText(context, com.android.internal.R.string.low_memory,
|
||||
Toast.LENGTH_SHORT).show();
|
||||
} else {
|
||||
throw e;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user