4

I am creating a today widget for my app http://budgt.ch as some users have requested quick access to key functionality.

The (preliminary) extension is working fine on iOS simulators, installed like this:

1) install latest container app 2) install extension with 'today' as container

However: i cannot seem to get the extension to show on a physical device (i am currently testing with an iPhone 6).

  • xcode says: Build successfull
  • Extension is not showing up in today view

any ideas what could be wrong?

Sebastian Flückiger
  • 5,525
  • 8
  • 33
  • 69
  • 1
    Are you sure that the deployment target for the extension is less than or equal to the system version of the device? Also, try rebooting the device. – EricS Apr 16 '15 at 16:55
  • 1
    I recall a number of "clean, fail to attach, clean, run" iterations when working with a today extension. Also make sure you [set the host app](https://developer.apple.com/library/ios/recipes/xcode_help-scheme_editor/Articles/SettingExtensionHost.html) as Today. – stevesliva Apr 16 '15 at 18:38
  • thank you @EricS, it's always the small stupid mistakes ;) had a 'too high' deployment on the extension :) you can put it into an answer and i'll accept it :) – Sebastian Flückiger Apr 16 '15 at 18:40
  • Answered here: https://stackoverflow.com/a/52046255/198927 – Petrus Theron Aug 27 '18 at 20:03

1 Answers1

6

Are you sure that the deployment target for the extension is less than or equal to the system version of the device?

EricS
  • 9,650
  • 2
  • 38
  • 34