AI-generated Key Takeaways
-
The SafetyNet API provides access to Google services for assessing the health and safety of an Android device.
-
SafetyNetClient is the main entry point for interacting with the SafetyNet API.
-
The API includes interfaces and classes for various functionalities such as attestation, harmful apps listing, reCAPTCHA verification, and safe browsing lookups.
-
Status codes and constants related to specific SafetyNet API functions are also provided.
Interfaces
| SafetyNetApi | The main entry point for interacting with SafetyNet. |
| SafetyNetApi.RecaptchaTokenResult | This interface was deprecated. use SafetyNetApi.RecaptchaTokenResponse
returned from verifyWithRecaptcha(String)
.
|
Classes
| HarmfulAppsData | APK information pertaining to one potentially harmful app. |
| SafeBrowsingThreat | A threat of interest used as input to lookupUri(String, String, int...)
and returned as output if these threats
are detected for the input URI to lookupUri(String, String, int...)
. |
| SafetyNet | The SafetyNet API provides access to Google services that help you assess the health and safety of an Android device. |
| SafetyNetApi.AttestationResponse | Response from attest(byte[], String)
that contains a Compatibility Test Suite
attestation result. |
| SafetyNetApi.HarmfulAppsResponse | A Response
returned from listHarmfulApps()
. |
| SafetyNetApi.RecaptchaTokenResponse | Response
from verifyWithRecaptcha(String)
. |
| SafetyNetApi.SafeBrowsingResponse | Response
for lookupUri(String, String, int...)
. |
| SafetyNetApi.VerifyAppsUserResponse | A Response
to get user decisions for the Verify Apps API. |
| SafetyNetClient | The main entry point for SafetyNet. |
| SafetyNetStatusCodes | Status codes for the SafetyNet API. |
| VerifyAppsConstants | Constants pertaining to the Verify Apps SafetyNet API. |

