Move some method to the companion

This commit is contained in:
Benoit Marty 2020-11-05 15:41:52 +01:00
parent b7a1f96294
commit 61ed436c44
1 changed files with 15 additions and 13 deletions

View File

@ -94,7 +94,8 @@ class CameraPicker {
return Intent(MediaStore.ACTION_IMAGE_CAPTURE)
}
private fun createPhotoUri(context: Context): Uri {
companion object {
fun createPhotoUri(context: Context): Uri {
val file = createImageFile(context)
val authority = context.packageName + ".multipicker.fileprovider"
return FileProvider.getUriForFile(context, authority, file)
@ -110,3 +111,4 @@ class CameraPicker {
)
}
}
}