Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOs today extension do not launch - lost connection to device

I created a today extension for my app and it works fine on my mobile, however if I try to launch the widget target on any other device I get this error

enter image description here

I run xcode 6.0.1

like image 615
Mathieu Avatar asked Jan 31 '26 15:01

Mathieu


1 Answers

Couple of things I would check:

  • Code signing / provisioning profiles are correct
  • The supported architecture is standard arch i had an issue with this. From the docs: A containing app that links to an embedded framework must include the arm64

https://developer.apple.com/library/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionScenarios.html

like image 61
rfrittelli Avatar answered Feb 03 '26 05:02

rfrittelli