diff options
author | Mattias Petersson <mattias.petersson@sonyericsson.com> | 2011-10-07 09:33:52 +0200 |
---|---|---|
committer | Johan Redestig <johan.redestig@sonymobile.com> | 2013-07-26 18:42:34 +0000 |
commit | 1d766b53217f9e45472a01e84d2f1b02af36dec7 (patch) | |
tree | 5408fa90569c4d35467ab508f7f58fd41eb832cb /api | |
parent | d547bcec5634f99195a2b12522b6977f61c40d55 (diff) | |
download | frameworks_base-1d766b53217f9e45472a01e84d2f1b02af36dec7.zip frameworks_base-1d766b53217f9e45472a01e84d2f1b02af36dec7.tar.gz frameworks_base-1d766b53217f9e45472a01e84d2f1b02af36dec7.tar.bz2 |
Add support for MNC=00
This adds support for operators with MNC (Mobile Network Code) zero
to add customized resources. For example, it makes it possible to
add a folder called "/res/values-mnc00/" in an application. This will
cause resources in that folder to be used when MNC is zero.
(There is a total of 14 countries that have an operator with MNC
zero.)
Without this fix, the resource framework gets confused, because MNC 0
is normally used when the MNC is undefined (not set).
Bug: 7170488
Change-Id: Icfd39fd0c739216e89446252ea0e7ceba6f002c6
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 962b332..6f0bbce 100644 --- a/api/current.txt +++ b/api/current.txt @@ -7255,6 +7255,7 @@ package android.content.res { field public static final int KEYBOARD_NOKEYS = 1; // 0x1 field public static final int KEYBOARD_QWERTY = 2; // 0x2 field public static final int KEYBOARD_UNDEFINED = 0; // 0x0 + field public static final int MNC_ZERO = 65535; // 0xffff field public static final int NAVIGATIONHIDDEN_NO = 1; // 0x1 field public static final int NAVIGATIONHIDDEN_UNDEFINED = 0; // 0x0 field public static final int NAVIGATIONHIDDEN_YES = 2; // 0x2 |