ECG capabilities, available with the Apple Watch Series 4 and later, allow users to quickly take an ECG by simply placing their finger on the Digital Crown and staying still for 30 seconds. Before the feature launches in countries, Apple must retain regulatory approval from the country's respective and appropriate authorities. The feature first launched in the U.S. in 2018 with the Apple Watch Series 4, following FDA approval.
watchOS 8.3 and iOS 15.2 are currently available to developers and public beta testers and can be expected to be launched publicly in the near future. iOS 15.2 includes several new features, including a redesigned Notification Summary, the Apple Music Voice Plan, Legacy Contacts, and more.
China's smartphone shipments fell 4% year over year in the first quarter of 2026, according to data from Counterpoint Research, with Apple delivering the strongest growth among the top six brands.
Counterpoint's Market Monitor Tracker attributed the decline primarily to a high base effect from last year's government subsidy program and rising component costs. Counterpoint noted that...
Apple's first foldable iPhone will be eSIM only and feature a Camera Control despite its ultra-thin design, according to a known leaker.
In a series of new posts, the leaker known as "Instant Digital" said that Apple has made deliberate engineering compromises to ensure that the first foldable iPhone features a Camera Control button, despite it being at least 1.1mm thinner than the iPhone...
The Trump administration plans to invite Apple CEO Tim Cook and CEOs from other companies like Nvidia, Qualcomm, Exxon, and Boeing on a trip to China next week, reports Semafor.
Trump will apparently focus on building his relationship with Chinese President Xi Jinping during the May 14 and May 15 meetings. Treasury Secretary Scott Bessent, United States Trade Representative Jamieson Greer,...
One guess is it might be a medical device requirement.
To have it approved per-region, yes, but to do so in a software update? Why not have a server somewhere that answers "I'm in region x requests" with "OK, you're in"?
Strange that they're hardcoding these regions into the OS, rather than having a separate mechanism to decide who gets to use the feature. I guess it's not a huge deal, but rolling out an entire OS upgrade just to add
public bool IsEcgAvailable { switch (user.Region) { case China: // new in 8.3 return true; default: return false; } }
Strange that they're hardcoding these regions into the OS, rather than having a separate mechanism to decide who gets to use the feature. I guess it's not a huge deal, but rolling out an entire OS upgrade just to add
public bool IsEcgAvailable { switch (user.Region) { case China: // new in 8.3 return true; default: return false; } }
seems a bit much.
One guess is it might be a medical device requirement.