I already answered on CB-10625
When android 4.4 broke input type file support I wrote a plugin at work to
use a file picker instead.
For google Photos I use this code:
if (isGooglePhotosUri(uri))
return uri.getLastPathSegment();
Where isGooglePhotosUri is
public static boolean isGooglePhotosUri(Uri uri) {
return "com.google.android.apps.photos.content".equals(uri.getAuthority());
}
I tried it on the camera plugin and worked.
The plugin is based on this android library
https://github.com/iPaulPro/aFileChooser
The relevant class is
https://github.com/iPaulPro/aFileChooser/blob/master/aFileChooser/src/com/ipaulpro/afilechooser/utils/FileUtils.java
2016-02-17 1:41 GMT+01:00 Joe Bowser <[email protected]>:
> Hey
>
> https://issues.apache.org/jira/browse/CB-10625
>
> For some reason Google Photos breaks the Camera's Gallery API, and I'm
> having trouble trying to fix this one. For some reason I can't get the
> FileHelper to work with the new file URI that's being provided by an
> application. Is there something obvious that we're missing here?
>
> Any thoughts?
>