Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode runtime error for iOS iPhone 8 - [AXRuntimeCommon] AX Lookup problem - errorCode:1100 portName:'com.apple.iphone.axserver' PID:2751

Tags:

xcode

ios

I am getting a runtime error from Xcode in the debug window when I run my app on an actual iPhone 8 device:

[AXRuntimeCommon] AX Lookup problem - errorCode:1100 portName:'com.apple.iphone.axserver' PID:2751

I have no idea what code that is coming from. I am using the Notification Content Extension.

What is causing this error message?

like image 693
Daniel Brower Avatar asked Jul 31 '19 23:07

Daniel Brower


2 Answers

I assume you have this solved by now, but for anyone else visiting, the error is informing you that the api used for AX Lookup is being denied access. If you are using Google Cloud Platform, this may be the case when you have a restricted API key. If this is the case for you,

Go to Google Cloud Platform Console, view your project, then go to APIs & Services -> Credentials -> click on the API key your iOS app is using, and under API Restrictions add the APIs necessary for your project. If you are using Google Firestore for storage, you should enable the Identity Toolkit API and Cloud Firestore API, in addition to any APIs you might use starting with "Firebase"

Hopefully this helped, and good luck!

like image 179
RJ_ Avatar answered Oct 22 '22 21:10

RJ_


It has been logged as a bug (FB7513956) by MADISON SOLARANA with potential fix coming in iOS 13.3.1 beta (source info).

like image 1
DORI Avatar answered Oct 22 '22 19:10

DORI