[Resolved] PLEASE HELP, no call id, my phone does not recognize the international country code - General Questions and Answers

PLEASE HELP...
My phone is TCL M3G, LEWA OS, version 3.1 (multi language LEWA ROM ), android version 5.0.2 64bit.
(i know chinese phone etc, but ....)
I have call id problems (on phone and sms/mms), my phone does not recognize the international country code (prefixes).
Stock phone application in my phone, when I call my a number from my contacts for example +300123456789 all fine, but when I called the (same) number 0123456789 is unknown (because there is no +30 or +7).
What can I do?
Can I delete the stock phone app? Try TruePhone application and other applications, but nothing when there is an incoming or outgoing call ( from my contacts) does not have the call identifier.
So when I called the number with the international code of the country that my phone does not recognize the international country code .... and the number is unknown.
It is difficult to add at all my contacts number with country code and the number without the country code ..
Try different thinks of the Internet, but nothing....https://www.google.gr/search?hl=el&...=android+phone+doesn't+recognize+country+code and https://www.google.gr/search?biw=12......1c.1.64.serp..9.6.1460...30i10.nuNIzki2YMg
Try to make all my contacts in the international format, but when I call a number from my contacts, without international format (without a country code in the national format) does not have the call identifier.
This is a common problem for android phones, but the solution is deferent on deferent android versions .... I think. It is necessary to make changes on android system components, to make modifications on the ROM.
PLEASE HELP...

dedalos91 said:
PLEASE HELP...
My phone is TCL M3G, LEWA OS, version 3.1 (multi language LEWA ROM ), android version 5.0.2 64bit.
(i know chinese phone etc, but ....)
I have call id problems (on phone and sms/mms), my phone does not recognize the international country code (prefixes).
Stock phone application in my phone, when I call my a number from my contacts for example +300123456789 all fine, but when I called the (same) number 0123456789 is unknown (because there is no +30 or +7).
What can I do?
Can I delete the stock phone app? Try TruePhone application and other applications, but nothing when there is an incoming or outgoing call ( from my contacts) does not have the call identifier.
So when I called the number with the international code of the country that my phone does not recognize the international country code .... and the number is unknown.
It is difficult to add at all my contacts number with country code and the number without the country code ..
Try different thinks of the Internet, but nothing....https://www.google.gr/search?hl=el&...=android+phone+doesn't+recognize+country+code and https://www.google.gr/search?biw=12......1c.1.64.serp..9.6.1460...30i10.nuNIzki2YMg
Try to make all my contacts in the international format, but when I call a number from my contacts, without international format (without a country code in the national format) does not have the call identifier.
This is a common problem for android phones, but the solution is deferent on deferent android versions .... I think. It is necessary to make changes on android system components, to make modifications on the ROM.
PLEASE HELP...
Click to expand...
Click to collapse
Hello,
Finally in my case this is the solution (tested on my phone and work fine)....
After so much searching and reading on Internet the solution is the editing of the system file build.prop ("/system/build.prop").
This is the editing (edit some code and adding some new code):
# lewa begin, for number match
persist.env.c.phone.matchnum=10
# lewa end
# Country code fix,phone,sms
ro.phone.min_match=10
# Fix end
editing
persist.env.c.phone.matchnum=10 > change the number from 11 to 10
10 in my country is the total numbers of a phone number without international country code (+39 or 0039 etc), put the correct number for you...how match digits is on your country?
and
adding new code
# Country code fix,phone,sms
ro.phone.min_match=10
# Fix end
the text after "#" it is just a free text message.
After editing reboot your phone and maybe must delete your contacts (or clear data contacts storage) and restore contacts form SD card or from your Google account (synchronizing your contacts).
You must sure the changes on build.prop has saved (please check, open it via root explorer as text).
Make the changes like that:
via root explorer you can see the permissions of build.prop (save a copy of original file) > copy the build.prop on yous SD card > open it via text editor and make the editing > then delete the system/build.prop file > copy the editing build.prop file from your SD card to system/ > give it the correct permissions > clear call log > reboot your phone.
The solution is from here https://code.google.com/p/android/issues/detail?id=23092
THANKS

Related

what to do with extROM ?

hello, i have unlocked extRom, but I cant use it for nothing. when i try to install something on it, after install files just disappeared. same thing with mp3 etc...
second problem - my device doesnt recognize service provider name, only number - 28403. please help me to patch registry for op name: Vivatel
10x in advance
please help !
1.u have only made the extended rom unhidden, not unlocked. Use the unlock tool provided on this forum(search )
2.the fix to change the provider is not permenant. Even if you change the text in registry, it ll roll-back to old name after soft-reset.

How to change the Devicename?

I ha´ve to change my DEVICENAME to Another one. I use an Application that Requires the Original Rom Name, but i wont use the Original Rom. Can Anybody help me. I think the Application ist looking for the Name in:
Start/Settings/System/Deviceinformation/Identity/Modell-Nr.
Thanks A lot.
Muppel
model number is not the device name. look at start > settings > system > about > device id > device name. some programs like themissingsync or using bluetooth or whatever rely on device name but i dont think model number matters for anything.
start /settings/ personal/owner information , first entry boxx
no no no, not what I want
No, sorry. But this is not what i want. I have to change the realy Devicename. I think it comes with the Rom.
You can find the Name 2 Lines over the IMEI (same field).
Maybe it is written in the "ModelName.txt" in the Windowsfolder. But I can´t change the Name (it is in the Rom and not possible to change).

How to obtain MDN or Telephone number from a script

Hello all,
I am creating a universal flash to enable web/mms for android devices on alternate carriers (i.e. Cricket/Metro PCS). The issue i am having is that some of the MMS settings require the users telephone number to send properly (for authentication i believe)
My current flash file is here:
http://forum.xda-developers.com/showthread.php?t=730289
You can view the code to see what im doing so far, but this uses a generic MMSC rather than one specific to the user as it should be for cricket. I don't know if there is any reason to have it authenticate with the correct user information for cricket or metropcs but im trying to make it as authentic as possible.
I am working to try to get this done in a script ran from recovery that sets this information dynamically for each phone without any user interaction other than flashing the file.
Is it possible to obtain the MDN or the Telephone number via a script or is this something i would need to build an apk to obtain?
i found this snippet:
Code:
TelephonyManager tManager = (TelephonyManager)myActivity.getSystemService(Context.TELEPHONY_SERVICE);
String uid = tManager.getDeviceId();
but this appears to be something that would go in while building an apk. My goal is to have a simple flash that can be done, but if needed i can start work on my first apk to accomplish the goal.
Any suggestions or feedback are welcome, Thanks in advance.

Phone have no signal

Hi all
I have try a lots of things without success.
My brother give me his phone because he breaks it (sim card reader was broken)
I bought an new one on eb*y and during the delivery, i install p30a rom.
When i received the new sim card reader and intalled it, i see that no signal.
I check APN, no one but i cant add new !
When i add a new one, menu + save, it go back and leave blank !
I have a IMEI ok.
So i launch other rom, because i was thinking it was that but no one change !
i cant do sos call
Network: Unknown
Signal strenght : 0dbm 99asu
Mobile network type : unknown
Service state : out of service
Android version : 4.0.4
Baseband : omap4430/xmm6260
Kernel : 3.0.21
I cant change SIM card lock, i can see the sim contact with some app
In search network, i have nothing
Thanks u a lots !!!
ps: i am french so i am realy sorry for my bad english !
So today i have installed SSH in it for exploring system with putty.
The IMEI is good (the same as behind the battery) but i cant see the /efs folder and i cant mounf mmcblk0p3
That is normal ?
otherthing, where are stocked the APN ? i want to inject it witout the gui. (because inside the gui, it dont work)
thank you

[Q] Help needed! SMSC Upadte error. Nothing works so far.

Hello,
I'm having troubles with sms sending since I flsahed a custom rom to my Alcatel OT-990 I tried to insert the smsc number in normal and in PDU format still getting update error I tried the turn off radio (method)sugesstion I saw on another forum but still no luck. I tried a almost all custom roms and I tried going back to the stock rom but still smsc is empty and I can't update smsc or can't send message. Oh and tried with two other sim card and I tried put my sim back to an old phone to save the smsc on it. But in old phones(Samsung GT-B3210, Motorola V3i) the sms sending works fine with my card.
So is there any pc based tool which can edit smsc on my phone or is there maybe a terminal emulator command which can do this or anything I can do to fix this (without buying a new phone).
I now there is for example go sms which can use custom smsc but I don't want to use third party apps for this and also I don't have enough space for it and this phone isn't strong one so probably a third party sms app would make it slower than it is now
Right now I have Android 2.3.7 CM7 on it with kernel 2.6.35.14-pref+ [email protected] #7

Categories

Resources