Key concepts | Set up your development environment | Build an RE SDK | Consume the RE SDK | Testing, and building for distribution |
设置您的开发环境
在 Android Studio 中,按如下方式安装 Android SDK:
- 在 SDK Platforms 标签页中,选择 Android 14.0 with the latest 扩展级别。
- 在 SDK Tools 标签页中,选择 Android SDK Build-Tools 34 或更高版本。
- 请按如下方式声明应用的编译 API 级别和 SDK 扩展级别:
android {
compileSdk = 34
compileSdkExtension = 12
// The rest of your configuration...
}
设置设备或模拟器映像
按照示例代码库中的说明,在 Android 14 及更高版本上设置 Privacy Sandbox 设备或模拟器映像以进行端到端测试。
代码示例
为方便您在遵循本指南时参考,我们使用 Kotlin 编程语言创建了一个示例项目。
第 1 步:主要概念第 3 步:构建支持运行时的 SDK