3

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

Mathieu
  • 1,175
  • 4
  • 19
  • 34

2 Answers2

4

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

rfrittelli
  • 1,211
  • 13
  • 15
  • 2
    seems to have something to do with the architecture cause the widget launch successfully on iphone 5, iphone 5c and iPad mini, but not on iphone 5s and 6 My targets valid architectures are armv7, armv7s and arm64 – Mathieu Oct 07 '14 at 15:27
  • yes i believe i read some where that they would reject it from the app store if it doesn't support 64 as well. – rfrittelli Oct 07 '14 at 15:32
0

I changed my widget config from this

enter image description here

to this

enter image description here

and it works now

Mathieu
  • 1,175
  • 4
  • 19
  • 34