2016-08-13 2 views
0

Fast jedes Mal, wenn ich versuche, meine SiriKit Extension auszuführen, bekomme ich "Entschuldigung, Sie müssen in der App fortsetzen" zusammen mit "Konnte nicht an pid: '# ### '"auf Xcode. Ich habe Siri-Fähigkeit aktiviert. Seltsamerweise, 1 von 10 mal, wenn ich reinige und wieder aufbaue, funktioniert die Erweiterung. Kann jemand damit umgehen?Xcode 8 SiriKit Erweiterung - Konnte nicht an pid anhängen

Edit: In console.app ich diese bekommen:

Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Info>: preparing plug-in <private>(<private>) 
Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Notice>: connection to plug-in <private>(0DDA43D4-A588-4478-8405-C219EAA7F591) lost 
Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Error>: Hub connection error Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.appID.SiriKitExtension" UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension} 
Aug 15 11:43:43 iPhone assistantd(PlugInKit)[12442] <Info>: beginUsing of 0DDA43D4-A588-4478-8405-C219EAA7F591 concludes with error=Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.appID.SiriKitExtension" UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension} 
Aug 15 11:43:43 iPhone assistantd(Foundation)[12442] <Notice>: PlugInKit error in beginUsing: 
Aug 15 11:43:43 iPhone assistantd[12442] <Error>: __52-[ADExtensionService handleCommand:forDomain:reply:]_block_invoke_2.154 Error with extension request Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.appID.SiriKitExtension" UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension} 
Aug 15 11:43:43 iPhone assistantd(Foundation)[12442] <Notice>: killing invalid plugIn 
Aug 15 11:43:43 iPhone assistantd[12442] <Error>: -[ADCommandCenter _handleServiceReply:error:forCommand:] Handling service error Error Domain=kAFAssistantErrorDomain Code=1301 "(null)" UserInfo={NSUnderlyingError=0x1005d1eb0 {Error Domain=NSCocoaErrorDomain Code=4097 "connection to service named com.appID.SiriKitExtension" UserInfo={NSDebugDescription=connection to service named com.appID.SiriKitExtension}}} for command <private> 
+0

Ich habe auch das gleiche Problem beim Hinzufügen von NotificationServiceExtension. "Konnte nicht an pid: '####' auf Xcode angehängt werden. Jede Initiative wird geschätzt. –

Antwort

3

Das Problem wurde behoben nach Wochen der Fehlersuche.

Mein Problem war, dass SiriKit auf Armv7-Architektur lief. Wenn Sie es in arm64 oder die Standardeinstellung von armv7 + arm64 ändern, wird dieses Problem behoben.

Ich hoffe, das hilft jemandem!

+0

Dies sollte als die richtige Antwort markiert werden !!! –

+0

Dies sollte als die richtige Antwort markiert werden. Fixed auf xCode 8.2.1 für mich auf Aktionserweiterungen. Standardmäßig erstellt Xcode nur mit arm7 und fügt arm64 fixing hinzu, wenn es auf dem Gerät läuft. –

Verwandte Themen