Search code examples
javascripttitaniumappceleratortitanium-mobileappcelerator-mobile

Get Phone Number(android) in Titanium


How can I get phone number in android?

Sample Code:

var contacts = Titanium.Contacts.getAllPeople();
Titanium.API.log(contacts[0].phone['mobile'][0]); //in iOS, returns "01012345678" fine :)
Titanium.API.log(contacts[0].phone['mobile'][0]); //in Android, returns ""  :(
Titanium.API.log(contacts[0].fullName); //in Android & iOS, returns "test Name" fine :)
Titanium.API.log(contacts[0].phone); //in Android, returns "" :(

Solution

  • Try the following code, It worked with me

    //Getting all the contacts
    var people = Ti.Contacts.getAllPeople();
    
    //Getting the total number of contacts
    var totalContacts = people.length;
    //Checking whether the contact list is empty or not
    if( totalContacts > 0 )
    {
        for( var index = 0; index < totalContacts; index++ )
        {
           //Holding the details of a single contact
           var person = people[index];
          Ti.API.info("Mobile -> " + person['phone'].mobile + " home-> " + person['phone'].home);
        }
    }
    

    note that your phone should have contact number in mobile and home options. I've added a screen shot from my android emulator. Just try giving numbers like this

    enter image description here