1

I got a Today extension half done in my project. I don't have to release a half done product to public but also want to keep the same codebase so I can save time on code maintenance.

Does anyone know a way to release the app without the Today extension built-it?

Thanks

L N
  • 2,856
  • 4
  • 20
  • 30

1 Answers1

5

In the application target settings,

  • Remove the today extension from the "target dependencies" list.
  • Remove the today extension from the "embed app extensions" list.

Then clean and build. You'll get a build of the app with no today extension.

When you want to go back to working on the today extension, reverse the two steps above.

Tom Harrington
  • 69,312
  • 10
  • 146
  • 170
  • Thanks man, just to be clearer. Open main app target setting -> Build Phases -> Remove widget from Target Dependencies and Embed App Extensions. When you want to add it back, reverse the steps (the embed app sitting in Products folder) – L N Dec 04 '14 at 00:18