When Wellbeyond released a meditation timer, it was designed from the ground up for the Apple Watch — with a “Watch First” mindset. The user interactions on the Watch were designed first, and the iOS app was almost an afterthought.

While this fostered a very simple and elegant user interface, most development time was consumed by working around the limitations of the first version of the Apple Watch SDK. For example, the opening screen lets you simply select how long you want to meditate:

watch2

The app makes the user feel comfortable by presenting a UI that is very similar to Apple’s built-in Workout app. Unfortunately there were two major — and unavoidable — UI problems with the implementation:

Adjusting the time is very slow. The response time of the buttons is terrible. When the user clicks the plus or minus buttons, what happens under the hood takes a ton of overhead:

The watchOS sends a Bluetooth notification to the iPhone, iOS calls a callback to let the app know that the button was clicked, the code then increments the number of minutes to meditate and changes the value of the label. In order to do that, iOS has to notify the Watch via Bluetooth to update the label.

The whole round-trip takes about a quarter of a second, which is extremely slow if the user wants to press this button multiple times to change the minute counter. As a workaround, the number of minutes changes in increments of five for any number above five, and in steps of one under five — 1, 2, 3, 4, 5, 10, 15, 20, etc.

The Digital Crown doesn’t work. Users expect to be able to turn the crown to change the number of minutes. This is how Apple’s Workout app works, and it’s what users rightfully expect. In the original version of WatchKit there’s absolutely no way to get access to the Digital Crown.

And when a user went on to meditate, there are more challenges:

watch3


The app can vanish in the middle of a meditation
. Almost by definition, people don’t use their phone while meditating. This means that iOS can yank the app out of memory because it’s apparently “not being used.” This is preventable if your app plays sound (such as a background sound or a narration), but the App Store guidelines are very strict in not allowing any of this trickery for apps that stay silent. We worked around this problem by scheduling a local push notification at the end of the meditation time: if all else fails, the user will still be notified when the meditation is over. There would be nothing worse than a meditation app that makes you wonder whether you’re done.

Looking at the Watch during meditation only shows the Watch face. While it’s possible to adjust the settings to show the current app, most users will only see the standard Watch face when they look at it while meditating. They’re not interested in the time, they want to know how far along they are.

You can’t play a sound on the Watch. While it’s possible to play sound on the iPhone from the Watch, WatchKit 1 did not let you play a specific sound on the watch itself. There is no workaround.

The taptic engine is not accessible. It would be great to notify people they’re halfway through their meditation using a small vibration on their wrist. While Apple’s built-in apps fully take advantage of this, third-party apps don’t have access to the taptic engine. The push-notification described above notifies people of the end of their meditation, which is better than nothing.

The trouble with glances. The “Glance” screen isn’t always up to date either:

watch1

To update the glance screen, WatchKit 1 has you start your app extension on the iPhone and call a function that would generate the graph and send it back to the Watch over Bluetooth. The Watch then caches the graph from the last time it was shown, but takes about 8 seconds to fully update. That’s way too long for a “glance.”

Ready set… … … … … … … … … … … … go!

Finally, like other Watch apps, the meditation app often takes several seconds to start. While meditation is supposed to teach you patience, this is not exactly what we had in mind.

watch4

Enough griping… let’s talk about the good news.

The Good News

In spite of all these limitations and shortcomings, the app still got 4.5 stars on the App Store. I’m thankful that users chose to judge the app in comparison with other third-party Watch apps, even though several users pointed out the issues listed above.

The best news of all is that watchOS 2 is the answer to all of our problems:

Adjusting time will be instantaneous. Everything runs on the watch without Bluetooth round trips to the iPhone. That means everything updates instantly, just as users expect.

Hello Crown, you look nice today. watchOS 2 has a beautiful picker control that lets users quickly choose from a number of options by either turning the crown for small increments or flicking it for rapid jumps with inertia. This will feel a thousand times more responsive than the current interface.

The app will stick around. In watchOS 2 your app can be the main activity, in which case it won’t just vanish, and it will be shown when users lift their wrist to glance at the Watch. This means we can show users exactly what they want to see.

Sound and taptic feedback, directly on the Watch. No worries about the iPhone being in the other room or too far way. All sound can be played directly on the Watch, and the user can “feel” when the meditation session is over.

Glances are super fast. Because of the lack of Bluetooth round-trips, glances are now updated much more quickly than they used to be, truly living up to their name.

The app starts immediately. No more starting apps on the iPhone and Bluetooth round-trips for every user interaction. Everything runs on the app where it belongs.

While an updated native SDK for the Watch was widely expected, I am still super impressed with how the Watch team was able to address concerns with the original toolkit.

This new way of doing things will also mean much better battery life on the iPhone because in most cases only one device will be doing all the work.

The speed and functionality improvements will be very obvious on all updated third-party apps, making the Apple Watch much quicker and more enjoyable to use. And very soon, all this goodness will be in the hands of end-users. Having trouble being patient? Try meditation.

 

Image: Shinya Suzuki / license / no changes made
Note: This piece was originally published 06/12/2015