由提供https://developer.android.com/about/versions/13/features/photopicker,在Android 13中,我们有了一个新的照片选择器。
我尝试代码
val intent = Intent(MediaStore.ACTION_PICK_IMAGES)
无法识别ACTION_PICK_IMAGES
。我应该导入哪个库才能识别它?
备注我已经将我的compileSdk和targetSdk设置为32,即Android 13。
android {
compileSdk 32
defaultConfig {
targetSdk 32
}
}
API 32是安卓12L,而不是安卓13。
您需要按照设置Android 13 SDK的说明使用Android 13 API,如照片选择器:
// Assuming you are using Android Gradle Plugin (AGP) 7.0.0 or higher
android {
compileSdkPreview "Tiramisu"
defaultConfig {
targetSdkPreview "Tiramisu"
}
}