Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Apple devices only show 1 contact.

Hi Brian,

We are sorry, probably your email was not delivered. Could you please send it again?

To build your IPA file you must have:

  • Apple certificate (***.p12)

  • Apple provisioning profile (***.provision)

  • Bundle ID (for example, we use com.exadel.***) - you can find it in your Apple certificate. Bundle ID can only consist of the Latin alphabet letters and dots. Also see http://stackoverflow.com/questions/34...

    Bundle ID should look like the following:
    com.example.myapp
    com.example is your domain
    myapp is an app name

    Also check next points:

  • Certificate is not expired.

  • Provisioning profile corresponds to the certificate.

  • Provision profile is for Ad Hoc build.

  • Password for p12 certificate file is correct.

    Also see https://www.youtube.com/watch?v=7Rypv...

    Please check extensions - for Provisioning profile file .mobileprovision and .p12 for Certificate file.
    Also please check if the directory in File Manager is correct

    Please make sure you have at least one device added in provisioning profile.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Apple devices only show 1 contact.

Hello!

Please take a look here https://getsatisfaction.com/apperyio/... and let us know if it helps

Brian Evans
Posts: 0
Joined: Mon Feb 03, 2014 9:28 pm

Apple devices only show 1 contact.

Ok, getting back to the Apple device importing. It's not importing all the contacts on the device. I see the initial execute sends all the contacts to the server but for some reason not all are getting imported and it's random. Sometimes, 90 or 112 or 13.

code
import_contact.execute({
"data": {
"email": localStorage.getItem('email'),
"password": localStorage.getItem('password'),
"customer_id": localStorage.getItem('customer_id'),
"contact": JSON.stringify(data)
}
});
/code

It seems to always get hung on this line though, php.
code
if(is_array($contact['emails'])){
/code

I've put in logging and just don't see anything wrong.
code
$this->log('--emails Array: '.is_array($c['emails']), 'api');
//check if emails is array and has any emails
if(is_array($contact['emails'])){
$this->log('--have emails', 'api');
........
}
$this->log($data, 'api');
/code

When it get's to the last user it hangs on it doesn't get to the log for have emails or the one for $data. It just stops.

Serhii Kulibaba
Posts: 150
Joined: Tue Aug 27, 2013 1:47 pm

Apple devices only show 1 contact.

Hello Brian,

Appery.io application receives not all items which your server returns? Can you send us example data from your server and data mapping from appery.io service?

Return to “Issues”