Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0
-
None
-
Crash found with 2.0.0 on Galaxy Nexus running Android 4.0.4
Description
When using camera.getPicture with options:
destinationType: Camera.DestinationType.FILE_URI,
sourceType: Camera.PictureSourceType.PHOTOLIBRARY
and selecting a photo from a Picasa-synced album, the application crashes immediately upon trying to return the data.
Here's our downstream bug with some analysis: https://bugzilla.wikimedia.org/show_bug.cgi?id=39604
FileUtils.getRealPathFromURI() cannot read the "_data" column from the content provider database, so imagePath and bitmap in CameraLauncher.onActivityResult are null. The crash occurs when trying to run bitmap.recycle().
I can avoid the crash by adding a guard check for bitmap != null and the content: URI is usable in the app to load the image, but doesn't appear to work with FileTransfer.