Android 16 marks a significant shift in Google's release cadence — it is the first Android release under the new annual major + quarterly minor schedule. The major release is targeted for Q2 2026, with developer previews available from January. Here is what Android 16 brings and how to prepare.
New Release Cadence
Starting with Android 16, Google is moving to a model with one major OS release and three smaller feature releases per year. This means more frequent API additions but also more frequent behavior changes to track. For Play Store compliance, Google confirmed that apps targeting API 36 will be required within 12 months of release — earlier than the previous 24-month window.
Health and Fitness APIs
Health Connect receives a major expansion in Android 16, becoming more deeply integrated with the OS. New data types include:
- Skin temperature and blood glucose readings from compatible wearables.
- Mental wellness metrics (mood, stress) with user-controlled sharing.
- Expanded exercise session types for more granular workout tracking.
Adaptive Refresh Rate APIs
Android 16 exposes fine-grained control over display refresh rate with a new
FrameRateControl API. Apps can now specify different frame rates for different
content regions — useful for video players, games, and mixed-content layouts.
// Request a specific frame rate for smooth animation
window.frameRateBoostOnTouchEnabled = true
ViewCompat.setFrameContentVelocity(contentView, FrameContentVelocity.HIGH)
Large Screen First-Class Support
Android 16 makes adaptive layouts a Play Store requirement for tablet-compatible apps. Google has added new lint checks that flag layouts that do not adapt to different screen widths, and the Play Store ranking algorithm now considers adaptive layout quality as a signal.
- New
SupportedScreenSizesmanifest element declares which form factors your app is optimized for. - WindowSizeClass API updates with finer-grained breakpoints.
- Required support for freeform/multi-window mode for apps targeting API 36.
Privacy Sandbox Evolution
Privacy Sandbox on Android matures in Android 16 with:
- Topics API stable — apps can request interest categories without accessing cross-app identifiers.
- Protected Audience API for remarketing without third-party tracking.
- Attribution Reporting API stable — measure ad conversion without user-level tracking.
Migration Timeline
- January–March 2026: Test against the developer preview. File bugs early.
- April 2026: Beta 1 — API stable, safe to test library compatibility.
- Q2 2026: Stable release. Start planning
targetSdk = 36update. - Q1 2027: Deadline for Play Store targetSdk 36 compliance.