Slide 21
Slide 21 text
権限が不要な理由の深堀り
①
react-native-image-picker の内部実装を見てみる
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) {
if (isSingleSelect && (isPhoto || isVideo)) {
libraryIntent = new Intent(Intent.ACTION_PICK);
} else {
libraryIntent = new Intent(Intent.ACTION_GET_CONTENT);
libraryIntent.addCategory(Intent.CATEGORY_OPENABLE);
}
} else {
libraryIntent = new Intent(MediaStore.ACTION_PICK_IMAGES);
}
https://github.com/react-native-image-picker/react-native-image-
picker/.../ImagePickerModuleImpl.java#L128C1-L137C10
2. 画像周りのパーミッション問題