summaryrefslogtreecommitdiff
path: root/telephony/java/com/android/internal/telephony/MccTable.java
AgeCommit message (Collapse)Author
2012-07-11Create telephony-common and mms-commonWink Saville
These have been created to reduce the size and complexity of frameworks/base. mms-common was created by moving all of frameworks/base/core/java/com/google/android/mms to: frameworks/opt/mms telephony-common was created by moving some of frameworks/base/telephony to: frameworks/opt/telephony Change-Id: If6cb3c6ff952767fc10210f923dc0e4b343cd4ad
2012-07-02Fix country code for Netherlands Antilles.Wink Saville
Change the cc to "ai" from "nl" otherwise the timezone is set to Netherlands which is +1 rather than the Caribbean which is -4. Bug: 6765706 Change-Id: Ie399efe95ce93b73eb4e60cfc47e621cce85e6e5
2012-03-21Telephony: Remove coupling between phone and IccRecordsAlex Yakavenka
Change-Id: I7af0f0f37c59b7554fa329a5b00ff28cb149b4d9
2011-06-09Set locale based on SIM preferred language.Kazuhiro Ondo
Unless user had selected a desired locale, EFli or EFpl will be used to decide the locale to be used. Note this locale setting is not persistent - only valid while SIM card is present. Change-Id: I1f3945f7bc02624dff94b90e7f1a658a136033e8
2011-04-08Fix ISO country code of Slovenia.Robert Greenwalt
Misread an IBM site and thought it was sl-sl, but really it is sl-si. fixes public bug 16021 Change-Id: I5b262a2b424fe2a0904f623f82449a539ede0fdb
2010-11-02Set country code in the driver and remove channel setIrfan Sheriff
With dual band support, using country code settings is the way to go Bug: 2936741 Change-Id: I760dce4c43b1af19ee205c28f0d287420c8d9e85
2010-07-19Add supporting MCC=450(Korea)Sang-il, Lee
Change-Id: I888bc46b5a2ba618893317154869671df7ec2132
2010-07-13Revert to an uncompressed MccTable.Robert Greenwalt
The compressed MccTable didn't have enough space for all the timezones or languages in the world. We can remove the timezones entirely by looking up the timezone from the ICU data. Since there is not much to be gained from the binary format and it had real limitations we chose to revert it. Fixed a bug where the wifi channel was never being set. bug:2284210 Change-Id: If9ca89f7053f937f555430b061c60cd7eec86d8e
2010-03-08Update the Mcc Table for Canada.Robert Greenwalt
Changing the mnc length from 2 to 3. We don't have any canandian APNs with 2 digit mncs and wikipedia doesn't list any canadian carriers with 2 digit mncs. Rogers was reporting some sims with 72 and others with the correct 720 - a sample "72" sim didn't have the mnc-length field set so we went with 2. With this fix all rogers sims will be picked up correctly.
2010-01-25resolved conflicts for merge of d0514347 to masterIrfan Sheriff
2010-01-20Use MCC value to always override channel count settingIrfan Sheriff
FCC raised the issue of not allowing users to configure channel counts beyond 11. This change enforces the channel count based on MCC values. Bug: 2378844
2009-12-02Telephony: Fix exception if PROPERTY_OPERATOR_NUMERIC is not setWink Saville
and minor fixes. Fix the following - When PROPERTY_OPERATOR_NUMERIC is not set, the value is "" when CDMAPhone is initialized. The constructor tries to extract MCC and MNC from this property and results in a StringIndexOutOfBounds exception. Check for empty OperatorNumeric string before trying to extract MCC and MNC - Handle RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING response gracefully. Change-Id: I749d6801bb4794d56e8fd672dec69dfea2b5c756
2009-11-24Add China data to MccTable.Robert Greenwalt
We didn't have the wifi channel count data there, so we failed to attempt connections on channel 13. bug: 2282285
2009-11-05Fix the selection of locale from SIM mcc.Robert Greenwalt
Two issues - getting config then setting locale by mcc and then setting the config (to set mcc/mnc) would overwrite the locale set in the middle. Also, using a "new Configuration()" instead of asking the ActivityManager.getConfiguration gets different values than the current ones, and would also overwrite our change. bug: 2241461 bug: 2239810
2009-09-03Promote MccTable to telephony and use it for both gsm/cdmaRobert Greenwalt
This adds timezone/locale/wifi-regulator-channels initialization to cdma (gsm already had it). bug: 2071211