Android 13 的照片选择器需要什么库?
What library is needed for Photo Picker of Android 13?
根据 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 is Android 12L,不是Android 13.
您需要遵循 Set up the Android 13 SDK instructions 才能使用 Android 13 个 API,例如照片选择器:
// Assuming you are using Android Gradle Plugin (AGP) 7.0.0 or higher
android {
compileSdkPreview "Tiramisu"
defaultConfig {
targetSdkPreview "Tiramisu"
}
}
根据 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 is Android 12L,不是Android 13.
您需要遵循 Set up the Android 13 SDK instructions 才能使用 Android 13 个 API,例如照片选择器:
// Assuming you are using Android Gradle Plugin (AGP) 7.0.0 or higher
android {
compileSdkPreview "Tiramisu"
defaultConfig {
targetSdkPreview "Tiramisu"
}
}