Google is giving Wear OS developers a supported way to let people control watch apps without touching the screen. A new gestures framework and a Compose API in Wear OS 7 open the door for any app to respond to a double-pinch or a wrist turn, Android Developers announced on the official blog. The company first shipped one-handed gestures on Pixel Watch through Wear OS 6.1, where they could start a timer, answer a call, or pause media; the 7.0 update moves that capability from a Pixel-only feature into a platform-level toolkit other manufacturers can adopt Android Developers.
The rollout reaches developers today through the 1.7 beta of Compose for Wear OS, which requires the dependency androidx.wear.compose:compose-material3:1.7.0-beta01, as Google’s Jetpack release notes confirm. That means the building blocks are available now, but an app has to target Wear OS 7 to use them.
Two interaction patterns anchor the framework. The primary action — a double-pinch on Pixel Watch — should trigger the single most important task in context, such as snapping a photo, starting a workout timer, or accepting a call. The dismiss action — a wrist turn — maps to system back by default and can close an interruptive screen or return to the watch face; Google says it can be overridden, for example to silence a ringing phone Android Developers. Both gestures currently work on Pixel Watch 3 and newer, and the underlying framework is offered to every Wear OS device maker, not just Google’s own hardware.
For Compose apps, developers attach a new Modifier.oneHandedGesture to an existing interactive component and wire two callbacks: one that shows a hint when the system is ready, and one that fires the actual action. The API also ships dedicated indicator components — for buttons, scrollable lists, and pagers — so users get animated cues about which gestures a screen supports, with system settings to tone down how often hints appear Android Developers.
Spotify is already using the API to let listeners play or pause music with the primary pinch gesture, mirroring the physical button without a screen tap, Google noted Android Developers. For Android developers tracking the broader shift toward verified, distributed app distribution, Google’s separate plan to require developer verification across seven app stores by September 30 shows the same ecosystem push toward managed, first-party tooling.
The practical takeaway: if you build for Wear OS, the gesture API is in beta now, but you’ll need to ship against Wear OS 7 to use it.
