I am trying to load images from camera path in gridview with the help of Picasso 2.5.2
storage/emulated/0/DCIM/Camera/IMG_20150822_133220.jpg here is the path.
Also I tried the given solution for the issue in Github repo of picasso. But it doesn't solve my problem.
I tried with Transformation of picasso, but images not getting load from camera path.
I tried this
File imageFile = new File(data.path);
Picasso.with(mContext)
.load(imageFile)
.placeholder(R.drawable.default_error)
.error(R.drawable.default_error)
.resize(mItemSize, mItemSize)
.centerCrop()
.into(image);