Security is foundational to Android. We partner with you to keep the platform safe and protect user data by offering powerful security tools and features, like Credential Manager and FLAG_SECURE. Every Android release brings performance and security enhancements, and with Android 16, you can take simple, significant steps to strengthen your app’s defenses. Check out our video or continue reading to learn more about our enhanced protections for accessibility APIs.
Protect your app from snooping with a single line of code
We’ve seen that bad actors sometimes try to exploit accessibility API features to read sensitive information, like passwords and financial details, directly from the screen and manipulate a user's device by injecting touches. To combat this, Android 16 provides a new, powerful defense in a single line of code: accessibilityDataSensitive.
The accessibilityDataSensitive flag allows you to explicitly mark a view or composable as containing sensitive data. When you set this flag to true on your app, you are essentially blocking potentially malicious apps from accessing your sensitive view data or performing interactions on it. Here is how it works: any app requesting accessibility permission that hasn't explicitly declared itself as a legitimate accessibility tool (isAccessibilityTool=true) is denied access to that view.
This simple but effective change helps to prevent malware from stealing information and performing unauthorized actions, all without impacting users’ experience of legitimate accessibility tools. Note: If an app is not an accessibility tool but requests accessibility permissions and sets isAccessibilityTool=true, Play will reject it and Google Play Protect will block it on user devices.
Automatic, enhanced security for setFilterTouchesWhenObscured protection
We’ve already integrated this new accessibilityDataSensitive security functionality with the existing setFilterTouchesWhenObscured method.
If you already use setFilterTouchesWhenObscured(true) to protect your app from tapjacking, your views are automatically treated as sensitive data for accessibility. By enhancing the setFilterTouchesWhenObscured method with accessibilityDataSensitive protections, we’re instantly giving everyone an additional layer of defense with no extra work.
Getting started
We recommend that you use setFilterTouchesWhenObscured, or alternatively the accessibilityDataSensitive flag, on any screen that contains sensitive information, including login pages, payment flows, and any view displaying personal or financial data.
For Jetpack Compose
setFilterTouchesWhenObscured | accessibilityDataSensitive |
| Use the
|
For View-based apps
In your XML layout, add the relevant attribute to the sensitive view.
setFilterTouchesWhenObscured | accessibilityDataSensitive |
|
|
Alternatively, you can set the property programmatically in Java or Kotlin:
setFilterTouchesWhenObscured | accessibilityDataSensitive |
|
|
|
|
Read more about the accessibilityDataSensitive and setFilterTouchesWhenObscured flags in the Tapjacking guide.
Partnering with developers to keep users safe
We worked with developers early to ensure this feature meets real-world needs and integrates smoothly into your workflow.
"We've always prioritized protecting our customers' sensitive financial data, which required us to build our own protection layer against accessibility-based malware. Revolut strongly supports the introduction of this new, official Android API, as it allows us to gradually move away from our custom code in favor of a robust, single-line platform defense."
- Vladimir Kozhevnikov, Android Engineer at Revolut
You can play a crucial role in protecting your users from malicious accessibility-based attacks by adopting these features. We encourage all developers to integrate these features into their apps to help keep users safe.
Together, we can build a more secure and trustworthy experience for everyone.
Continue reading
-
Product News
Every developer's AI workflow and needs are unique, and it's important to be able to choose how AI helps your development. In January, we introduced the ability to choose any local or remote AI model to power AI functionality in Android Studio
Matthew Warner • 2 min read
-
Product News
Android Studio Panda 3 is now stable and ready for you to use in production. This release gives you even more control and customization over your AI-powered workflows, making it easier than ever to build high-quality Android apps.
Matt Dyor • 3 min read
-
Product News
At Google, we’re committed to bringing the most capable AI models directly to the Android devices in your pocket. Today, we’re thrilled to announce the release of our latest state-of-the-art open model: Gemma 4.
Caren Chang, David Chou • 3 min read
Stay in the loop
Get the latest Android development insights delivered to your inbox weekly.