Skip to main content

Diving Deep into Android 17 Beta 2: What's New, Features Explained, and a Complete List of Bug Fixes


By Diablo Tech Blog | February 28 2026 


Hello, tech enthusiasts, let's dive into the latest from the Android world. Just a couple of days ago, on February 26, 2026, Google rolled out Android 17 Beta 2, building on the momentum from Beta 1. This update, with build numbers like CP21.260206.011 and a security patch level of February 5, 2026, is available for Pixel devices including the Pixel 6 series through Pixel 7 Pro. It's designed for developers and early adopters to test new capabilities while ironing out kinks before the stable release expected around June 2026. In this in-depth article, I'll break down every new feature with detailed explanations, explore how they impact users and developers, and list out every single bug fixed in this beta. Whether you're a Pixel owner itching to sideload or just curious about the future of Android, buckle up—this is going to be a comprehensive ride.

Release Overview: A Quick Primer on Android 17 Beta 2

Android 17, codenamed something futuristic (Google's keeping it under wraps for now), continues Google's focus on privacy, performance, and seamless cross-device experiences. Beta 2 arrives hot on the heels of Beta 1 (released February 13, 2026), which introduced things like mandatory large-screen adaptability and performance tweaks like lock-free MessageQueue for smoother UI. This second beta refines those foundations while adding user-facing goodies and developer APIs. It's available via over-the-air (OTA) updates for enrolled devices in the Android Beta Program, or you can sideload factory images from the Android Emulator (supporting x86 64-bit and ARM v8-A architectures). Google Play Services version 25.49.33 is bundled in, ensuring compatibility with the latest services.

Remember, this is still beta software—expect some instability, though reports suggest it's more polished than Beta 1. Google emphasizes testing for app compatibility with SDK 37, and if you're on a Pixel, back up your data before diving in. Now, let's get into the meat: the new features.

What's New: In-Depth Breakdown of Every Feature

Android 17 Beta 2 isn't just about fixes; it's packed with enhancements across user experience, connectivity, privacy, and core functionality. I'll explain each one in detail, including how it works, why it matters, and implications for users and devs. These build on Android 16's stability while pushing boundaries in multitasking and security.

1. Bubbles: Revolutionizing Multitasking with Floating Apps

One of the standout additions is the expanded Bubbles feature, which transforms how you multitask on Android devices. Previously limited to messaging apps via the bubbles API, Bubbles now works system-wide for any app. On your phone, foldable, or tablet, simply long-press an app icon in the launcher to "bubble" it—creating a floating window that hovers over other content. This allows quick access without fully switching apps, perfect for checking a calculator while browsing or monitoring a music player during work.

On larger screens like tablets or foldables, there's a new bubble bar integrated into the taskbar. This acts as a dock for your bubbles, letting you organize them, drag them between anchored points on the screen, or expand/collapse as needed. Apps must adhere to multi-window guidelines to function properly, meaning developers need to ensure their apps handle resizing and state preservation gracefully.

Why does this matter? In a world of bigger screens and hybrid devices, Bubbles bridges the gap between phone and desktop-like experiences. For users, it means less app-switching friction—imagine bubbling a note-taking app while video calling. Developers get a nudge to optimize for multi-window modes, potentially leading to more versatile apps. Early testers report it's intuitive but can clutter small screens if overused.

2. EyeDropper API: Precision Color Picking Without Privacy Compromises

Creatives and designers, rejoice! The new EyeDropper API is a system-level tool that lets apps pick colors from any pixel on the screen without needing risky screen capture permissions. It works via an intent: Apps launch Intent.ACTION_OPEN_EYE_DROPPER, which opens a system picker. Users select a color, and it's returned as an ARGB integer via Intent.EXTRA_COLOR.

This is huge for apps like photo editors (e.g., matching colors in Photoshop alternatives) or design tools (e.g., picking hues from wallpapers). Previously, devs had to request broad screen recording access, raising privacy flags. Now, it's seamless and secure—the system handles the picking, ensuring no app gets unauthorized screen data. For users, it means more accurate tools without granting excessive permissions. Devs should integrate it using ActivityResultContracts.StartActivityForResult for handling results. Expect this to shine in creative workflows, especially on tablets with stylus support.

3. Contacts Picker: A Privacy-First Approach to Sharing Contacts

Privacy takes center stage with the revamped Contacts Picker, accessed via the ACTION_PICK_CONTACTS intent. This system-level interface grants temporary, session-based read access to only the specific data fields you request—like email or phone numbers—without needing the full READ_CONTACTS permission. You can specify fields with EXTRA_PICK_CONTACTS_REQUESTED_DATA_FIELDS, allow multiple selections (EXTRA_ALLOW_MULTIPLE), or set limits (EXTRA_PICK_CONTACTS_SELECTION_LIMIT). It even supports picking from personal or work profiles.

In practice, this means apps like messaging or email clients can let users select contacts without blanket access to your entire address book. If a banking app needs a phone number for verification, it gets just that—no more. This reduces data exposure risks, aligning with Google's ongoing privacy push (think Photo Picker from Android 13). For developers, it's a shift toward granular permissions; results come as URIs for processing. Users benefit from fewer scary permission prompts and better control over data sharing.

4. Touchpad Pointer Capture: Better Input for Games and Apps

For devices with touchpads (like Chromebooks or external accessories), Android 17 Beta 2 improves pointer capture. When an app captures the touchpad, it now defaults to relative mode, treating inputs as mouse-like events: relative movements and scrolling gestures. This makes games and productivity apps feel more natural—no more awkward absolute finger positioning. Devs can opt for legacy absolute mode with View.requestPointerCapture(View.POINTER_CAPTURE_MODE_ABSOLUTE) if needed for precise touch data.

This enhancement is subtle but impactful for hybrid setups, ensuring Android apps play nice with laptop-style inputs. Gamers might notice smoother controls in emulated scenarios, while devs get easier compatibility without custom hacks.

5. Interactive Chooser: Smarter UI Adjustments for Sharing

Apps using ChooserSession (for sharing intents) can now call getInitialRestingBounds to get the final position of the chooser UI after animations and data loading. This allows precise layout tweaks, like aligning overlays or avoiding overlaps. It's a developer-focused tweak that leads to cleaner, more responsive sharing experiences—think smoother file pickers in apps like Drive or Gallery.

6. Cross-Device Handoff: Seamless App Continuity Across Devices

Borrowing a page from Apple's Handoff, Android's new Handoff API lets apps resume states across devices. Enable it with Activity.setHandoffEnabled, and state syncs via CompanionDeviceManager. Launchers suggest handoffs for nearby devices (e.g., phone to tablet), with fallbacks to web versions if the app isn't installed.

Imagine starting a document on your phone and picking it up on your tablet without losing progress. This boosts productivity in Google's ecosystem, especially with Pixel Tablets or Chromebooks. Privacy is maintained through companion device pairing, and it's opt-in for apps. Devs need to handle state serialization, but the payoff is a more connected Android world.

7. Advanced Ranging APIs: Precision Location Without Compromising Privacy

Connectivity gets a boost with two new ranging techs:

  • UWB DL-TDOA (Downlink Time Difference of Arrival): Compliant with FiRA 4.0, this enables privacy-preserving indoor navigation. Anchors can't track devices, making it ideal for malls or offices without surveillance risks.

  • Proximity Detection: Based on WiFi Alliance specs, it improves accuracy and reliability over existing WiFi Aware, great for smart home triggers or lost-item finders.

These APIs open doors for AR apps, IoT integrations, and precise location services. Users get better experiences like auto-unlocking doors, while devs can build without heavy battery drain.

8. Data Plan Enhancements: Optimized Streaming Based on Carrier Limits

Apps can now query carrier-specific max data rates for streaming with SubscriptionInfo.getStreamingAppMaxDownlinkKbps and getStreamingAppMaxUplinkKbps. This lets video apps like YouTube auto-adjust quality to avoid buffering on limited plans, improving efficiency and user satisfaction.

9. Time Zone Broadcast: Granular Handling of Time Changes

A new intent, ACTION_TIMEZONE_OFFSET_CHANGED, fires specifically for offset shifts like Daylight Saving Time. This complements existing time intents, helping apps (e.g., calendars) react precisely without unnecessary updates.

10. NPU Management: Prioritizing AI Hardware Access

Apps targeting Android 17 must declare FEATURE_NEURAL_PROCESSING_UNIT in their manifest to access the Neural Processing Unit (NPU) directly. This includes LiteRT delegates or vendor SDKs, ensuring AI tasks like image recognition get prioritized hardware without conflicts.

11. ICU 78 and Unicode 17 Support: Enhanced Internationalization

Updated libraries bring ICU 78, supporting Unicode 17 with new scripts, emojis, and direct time formatting. This means better global app support—think accurate rendering of regional characters or new emoji in chats.

12. SMS OTP Protection: Beefed-Up Security Against Hijacking

To combat scams, access to OTP-containing SMS is delayed by three hours for most apps. This extends to WebOTP and standard formats, with exemptions for default SMS handlers. Devs are encouraged to use SMS Retriever or User Consent APIs for instant access. Users get safer banking and login flows, reducing phishing risks.

13. Local Network Access Permission: Safeguarding LAN Communications

A new ACCESS_LOCAL_NETWORK permission (under NEARBY_DEVICES) protects local network access, preventing unauthorized discovery or connections. This integrates with device pickers, minimizing prompts while enhancing security for smart home setups.

14. Redesigned Privacy Indicators: Visual Cues for Active Sensors

Privacy indicators in the status bar and Quick Settings have been refreshed for clarity. When camera, mic, or location is in use, icons are more prominent and grouped (e.g., a combined pill for multiple accesses). This builds on Android 12's indicators, making it easier to spot app activity at a glance.

Every Bug Fixed: A Complete List with Explanations

Beta 2 isn't all flash—it's got substance in stability. Google squashed 16 bugs from Beta 1 and prior regressions. Here's the full list, with issue numbers and why each matters:

  1. Platform stability regression from Android 16: Fixed apps unexpectedly restarting or refreshing, which caused lost progress and UI flickering. This was a major pain for multitasking users. (Issue #440017096)

  2. UI layout regression in Recent Apps for German settings: Resolved misaligned elements in the overview screen, ensuring proper display for non-English users. (Issues #476830557, #486511401)

  3. Video streaming reliability: Enabled confirmation of temporal layering via getOutputFormat after encoder setup, fixing missing metadata that led to playback issues.

  4. Clock screensaver leading zero in 24-hour format: Added the missing zero (e.g., "09:00" instead of "9:00") in low-light mode, for accurate time display. (Issue #444255729)

  5. Folder closing blocking interactions: Fixed delays where closing a folder prevented immediate actions like opening another or switching screens. (Issues #470541347, #471533397, #477848604)

  6. System crash and spontaneous reboots: Addressed a critical issue interrupting device usage, making phones nearly unusable. (Issue #413562426)

  7. Critical system instability during transitions: Resolved freezes and reboots in app switches or service calls. (Issues #419070024, #428572458, #430393241, #424912278, #431440391, #426346396)

  8. System UI deadlock after Android Auto disconnect: Fixed lock screen hangs and unresponsiveness post-disconnect. (Issue #457527675)

  9. UI typo in location permission dialog: Corrected "Bac" to "Back" button, improving usability. (Issues #460242870, #477245738)

  10. Mis-categorized Live Translate and Rules in System menu: Placed them correctly, easing navigation. (Issue #476754995)

  11. System UI crash in Display and Touch settings: Stopped crashes from repeated navigation, enhancing settings stability. (Issue #474486679)

  12. Wallpaper & Style settings access from home screen: Fixed persistent crash preventing opens. (Issue #478520173)

  13. Wireless Debugging QR scanner UI overlap: Corrected back arrow overlapping QR icon. (Issue #474769647)

  14. Ringtone previews not playing: Resolved failure to play selected sounds in settings. (Issues #355086959, #375840924, #381007949, #381077928, #419301121, #452646483, #468837747)

  15. Redundant notifications post-update: Improved logic to clear stale alerts during initialization. (Issue #454647834)

  16. GPU shader compiler bug on Pixel 6 Pro: Fixed incorrect GLSL evaluations causing rendering artifacts. (Issue #473226715)

These fixes make Beta 2 feel more daily-driver ready, addressing everything from crashes to UI niggles.

Final Thoughts: Is Android 17 Beta 2 Worth the Dive?

Android 17 Beta 2 shapes up as a thoughtful update, blending user delights like Bubbles with dev empowerments like the EyeDropper API, all wrapped in stronger privacy. While still in beta (apps might misbehave), the bug squashes suggest improved stability over Beta 1. If you're on a supported Pixel and love tinkering, enroll via google.com/android/beta—but backup first! For the rest, this previews an Android future that's more connected, secure, and fun. What feature excites you most? Drop a comment below, and stay tuned for more tech deep-dives.

Thanks for reading—until next time!


Comments

Popular posts from this blog

Google I/O 2026: Everything Announced So Far- Dates, Full Schedule, AI-Focused Themes, And What Developers Can Expect

By Pixel Paladin For Diablo Tech Blog | April 17 2026  Google I/O, the company’s flagship annual developer conference, returns on May 19–20, 2026 , and as of April 16, 2026, Google has officially revealed the dates, venue, livestream details, keynotes, and an initial slate of sessions that heavily hint at the biggest themes for the year. While the main product reveals, keynote demos, and deep technical sessions are still weeks away, the pre-event announcements paint a clear picture: 2026 is all about the “agentic era” of AI development , with major updates expected across Gemini, Android 17, Chrome, Cloud, Google Play, Firebase, and more. This in-depth guide compiles everything officially announced to date from Google’s blogs, the io.google site, and the newly released livestream schedule. I’ll break it down into timelines, exact session details, what the teasers imply, how to watch, and why this event matters for developers, Android users, and the broader tech ecosystem. Conside...

The Ultimate Guide To Google Pixel 9A And Pixel 10A Cameras: Why These Budget Phones Deliver Flagship-Level Photography Magic

  By Diablo Tech Blog | April 13 2026  If you’re in the market for a smartphone that takes stunning photos without draining your wallet, Google’s Pixel A-series has long been the undisputed champion. The Pixel 9A (released in early 2025) and its successor, the Pixel 10A (launched in early 2026), continue this tradition with camera systems that punch way above their mid-range price tags. Both phones prioritize Google’s legendary computational photography over raw hardware specs, delivering vibrant colors, excellent low-light performance, and AI-powered tools that feel almost magical. In this lengthy deep dive, we’ll break down every aspect of the cameras on the Pixel 9A and 10A — hardware, real-world performance, signature features, video capabilities, and the subtle but meaningful differences between the two models. Whether you’re a casual snapper, a travel photographer capturing Mumbai’s chaotic streets at dusk, or someone who wants pro-level edits without leaving the phone, ...

In-Depth Review and Hands-On with the Google Pixel 10a: Every Feature and Specification Explored

As a tech enthusiast and blogger based in Mumbai, I've had the privilege of getting my hands on the latest mid-range offering from Google: the Pixel 10a. Launched in February 2026, this device aims to bridge the gap between affordability and premium features, starting at $499 for the 128GB model and going up to $599 for 256GB. It's positioned as an entry point for those seeking the Pixel experience without the flagship price tag, especially appealing to users switching from iPhones or looking for a compact Android phone with long-term support. In this comprehensive article, I'll dive deep into every aspect of the Pixel 10a, drawing from my two-week hands-on experience, official specs, and insights from various reviews. We'll cover design, display, performance, camera, battery, software, and more. If you're considering this as your next daily driver, read on to see if it lives up to the hype—or if it's just a subtle refresh of its predecessor, the Pixel 9a. Desig...