使用 SafetyNet 抵御安全威胁
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
SafetyNet 提供了一组服务和 API 来保护您的应用免遭各种安全威胁,包括设备篡改、不良网址、可能有害的应用以及虚假用户等。
准备工作
如需准备应用,请首先确保应用的 build 文件使用了以下值:
minSdkVersion
为 19
或更高版本
compileSdkVersion
为 28
或更高版本
然后完成以下部分中的步骤。
在 settings.gradle
文件中,同时在 dependencyResolutionManagement
和 pluginManagement
代码库部分中添加 Google 的 Maven 代码库和 Maven 中央代码库:
pluginManagement {
repositories {
...
google()
mavenCentral()
}
}
dependencyResolutionManagement {
...
repositories {
google()
mavenCentral()
}
}
将 Google Play API 的 Google Play 服务依赖项添加到模块的 Gradle build 文件(通常为 app/build.gradle
)中:
dependencies {
implementation 'com.google.android.gms:play-services-safetynet:18.0.1'
}
- SafetyNet Attestation API
- 了解 SafetyNet Attestation API 如何提供经过加密签名的认证,以评估您的应用所运行的 Android 设备的完整性。
- SafetyNet Safe Browsing API
- 了解 SafetyNet Safe Browsing API 提供的服务如何确定网址是否已被 Google 标记为已知威胁。
- SafetyNet reCAPTCHA API
- 了解 SafetyNet reCAPTCHA API 如何保护您的应用免受恶意流量的危害。
- SafetyNet Verify Apps API
- 了解 SafetyNet Verify Apps API 如何保护设备免受可能有害的应用的危害。
其他资源
本页面上的内容和代码示例受内容许可部分所述许可的限制。Java 和 OpenJDK 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2023-12-13。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"没有我需要的信息"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"太复杂/步骤太多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"内容需要更新"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻译问题"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/代码问题"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"易于理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"解决了我的问题"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
{"lastModified": "\u6700\u540e\u66f4\u65b0\u65f6\u95f4 (UTC)\uff1a2023-12-13\u3002"}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["没有我需要的信息","missingTheInformationINeed","thumb-down"],["太复杂/步骤太多","tooComplicatedTooManySteps","thumb-down"],["内容需要更新","outOfDate","thumb-down"],["翻译问题","translationIssue","thumb-down"],["示例/代码问题","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2023-12-13。"]]