Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to set/change the phone number of the emulator for debugging purposes... Any help would be appreciated...

Thanks :)

share|improve this question

3 Answers

up vote 2 down vote accepted

http://developer.android.com/guide/developing/tools/emulator.html....

cover this you will come to know to make changes in emulator

share|improve this answer
that helps.. thanks.... – Rahim Jun 13 '11 at 6:00

hi get phone no by calling getLine1Number() method from TelephonyManager class

TelephonyManager tmgr=(TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE) ;

u can return static phone number

share|improve this answer
I can get the phone number using this code... What i want to know is, how to set or change the phone number, sim serial number, etc. There must be some configuration file or something like that... I am working in windows vista... – Rahim Feb 2 '11 at 13:58

The accepted answer has nothing to do with changing the default phone number. You need to recompile from source or patch the binary to change the first 7 digits. The last four of the phone number are the emulator's port number. Patching the phone number is detailed at the end of this blog post:

http://vrt-blog.snort.org/2013/04/changing-imei-provider-model-and-phone.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.