{ "id": "92454", "key": "TIMOB-9363", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [ { "id": "14126", "description": "Sprint 2012-19 Core", "name": "Sprint 2012-19 Core", "archived": true, "released": true, "releaseDate": "2012-09-24" }, { "id": "14271", "description": "2012 Sprint 19", "name": "2012 Sprint 19", "archived": true, "released": true, "releaseDate": "2012-09-24" }, { "id": "14982", "description": "Release 3.2.0", "name": "Release 3.2.0", "archived": false, "released": true, "releaseDate": "2013-12-19" } ], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2013-04-02T01:23:24.000+0000", "created": "2012-05-28T04:51:09.000+0000", "priority": { "name": "High", "id": "2" }, "labels": [ "community", "core" ], "versions": [ { "id": "13272", "description": "Release 2.0.1", "name": "Release 2.0.1", "archived": true, "released": true, "releaseDate": "2012-04-16" } ], "issuelinks": [ { "id": "33324", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "106605", "key": "TIMOB-12848", "fields": { "summary": "Android: Using the camera on certain devices causes the app to crash", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Critical", "id": "1" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "17613", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "outwardIssue": { "id": "92670", "key": "TIMOB-9362", "fields": { "summary": "Android: first use of camera crashes on SDK 2.0.1+ (works on 1.8.2-)", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "High", "id": "2" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "39263", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "133516", "key": "AC-1631", "fields": { "summary": "Android: Titanium.Media.showCamera crashes for large images on load of ti.paint module", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "26870", "type": { "id": "10003", "name": "Relates", "inward": "relates to", "outward": "relates to" }, "inwardIssue": { "id": "105978", "key": "TIMOB-11959", "fields": { "summary": "Android: ShowCamera crashes application on \"Sony Ericsson Xperia u\"", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Low", "id": "4" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-22T23:10:30.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10202", "name": "Android", "description": "Android Platform" } ], "description": "In android application when I am taking picture from camera and hitting \"OK\" or selecting image from gallery,application will forced close.This is happen when I install application on android device and using first time. after forced close when I again restart application and use this functionality,its working fine. When I tried with android 2.2 and Titanium SDK 1.8.0.1 it's working proper even on first load also and without any error and forced close.\r\n\r\n{code}\r\nvar win = Ti.UI.currentWindow;\r\n\r\nphoto_gallery_view = Ti.UI.createView(\r\n{\r\n\theight:'45dp',\r\n width:'45dp',\r\n\tbackgroundColor:'#fff'\r\n});win.add(photo_gallery_view);\r\n\r\nphoto_camera_view = Ti.UI.createView(\r\n{\r\n\theight:'45dp'\r\n width:'45dp',\r\n\tbackgroundColor:'#fff'\r\n});win.add(photo_camera_view);\r\n\r\n the_img = Titanium.UI.createImageView({ \r\n \timage: 'default.png',\r\n\theight: '150dp',\r\n\twidth: '50%',\r\n\ttop: '10dp'\r\n});win.add(the_img);\r\n\r\nphoto_camera_view.addEventListener('click', function(e)\r\n{\r\n Titanium.Media.showCamera(\r\n {\r\n success:function(event)\r\n {\r\n the_img.image = event.media; \r\n },\r\n cancel : function() {\r\n\t \r\n\t },\r\n\t error : function(error) \r\n\t {\r\n\t \t\r\n\t },\r\n });\r\n});\r\n\r\n{code}\r\n", "attachment": [], "flagged": false, "summary": "Android: Application forced close after taking picture from camera or selecting picture from gallery on first load.", "creator": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "environment": "Android 2.2, Titanium SDK 2.0.1", "comment": { "comments": [ { "id": "196620", "author": { "name": "vjoshi", "key": "vjoshi", "displayName": "Varun Joshi", "active": true, "timeZone": "America/New_York" }, "body": "Hi Nilesh,\r\n\r\nCould you please provide a working sample that reproduces the issue? Also, please tell is the Android device you are testing on?\r\n\r\nThanks,\r\nVarun", "updateAuthor": { "name": "vjoshi", "key": "vjoshi", "displayName": "Varun Joshi", "active": true, "timeZone": "America/New_York" }, "created": "2012-05-30T16:54:33.000+0000", "updated": "2012-05-30T16:54:33.000+0000" }, { "id": "196674", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": " Download this application [http://assets.appcelerator.com.s3.amazonaws.com/app_u/code/TiBountyHunter.zip]. Build this application with titanium sdk 2.0.1 and google android api 2.2. Install this application on device with android version 2.2. I am using samsung galaxy 5 with android version 2.2. When I tried with titanium sdk 1.0.8.1 It's working fine. Not giving any error. But When i tried with titanium sdk 2.0.1 on first load it's forced close when I tried to take a photo and set as image in image view.But after first load it's working fine.", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-05-30T23:02:33.000+0000", "updated": "2012-05-30T23:02:33.000+0000" }, { "id": "197625", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": "My log records on android device:\r\n{quote}\r\nE/TiApplication( 9316): (main) [39,15760] Sending event: exception on thread: main msg:java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content://media/external/images/media/847 }} to activity {com.votodo/org.appcelerator.titanium.TiActivity}: java.lang.NullPointerException; \r\nE/TiApplication( 9316): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { dat=content://media/external/images/media/847 }} to activity {com.votodo/org.appcelerator.titanium.TiActivity}: java.lang.NullPointerException\r\n{quote}", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-06T21:48:46.000+0000", "updated": "2012-06-06T21:48:46.000+0000" }, { "id": "197834", "author": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "body": "Can confirm this bug. It actually makes all camera operations on Android unususable. So I hope this SERIOUS bug is fixed VERY soon.\r\nHere is my code: http://developer.appcelerator.com/question/138065/camera-causing-the-app-to-crash-randomly#comment-129771\r\n\r\nWhat I figured out is, that it seems to happen randomly. When I started my app for the first time and took a pic inside my app, it crashes, I started the app a second time and it worked fine. Third time: crash. Probably a memory-problem? \r\n\r\nTeted with Android 2.2 API, and SDK 2.0.2 on Galaxy S Plus running Android 2.3.6", "updateAuthor": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-06-08T01:54:45.000+0000", "updated": "2012-06-08T01:55:56.000+0000" }, { "id": "198308", "author": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "body": "+1", "updateAuthor": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-13T03:56:05.000+0000", "updated": "2012-06-13T03:56:05.000+0000" }, { "id": "199112", "author": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "body": "Issue cannot be reproduced against current master@0629c0a11fd112cb5a326cdc161bbe8d09b3aad1 using both a Droid 2 (2.3) and Samsung Galaxy Tab (3.2). Upon taking photos during the first launch, the captured photo is stored to gallery and viewable.\r\n\r\nTest case:\r\n{code}\r\nvar win = Titanium.UI.createWindow({backgroundColor: 'red'});\r\nTitanium.Media.showCamera({\r\n \r\n success:function(event)\r\n {\r\n var cropRect = event.cropRect;\r\n var image = event.media;\r\n \r\n Ti.API.debug('Our type was: '+event.mediaType);\r\n if(event.mediaType == Ti.Media.MEDIA_TYPE_PHOTO)\r\n {\r\n var imageView = Ti.UI.createImageView({\r\n width:win.width,\r\n height:win.height,\r\n image:event.media\r\n });\r\n win.add(imageView);\r\n }\r\n else\r\n {\r\n alert(\"got the wrong type back =\"+event.mediaType);\r\n }\r\n },\r\n cancel:function()\r\n {\r\n },\r\n error:function(error)\r\n {\r\n // create alert\r\n var a = Titanium.UI.createAlertDialog({title:'Camera'});\r\n \r\n // set message\r\n if (error.code == Titanium.Media.NO_CAMERA)\r\n {\r\n a.setMessage('Please run this test on device');\r\n }\r\n else\r\n {\r\n a.setMessage('Unexpected error: ' + error.code);\r\n }\r\n \r\n // show alert\r\n a.show();\r\n },\r\n saveToPhotoGallery:true,\r\n allowEditing:true,\r\n mediaTypes:[Ti.Media.MEDIA_TYPE_VIDEO,Ti.Media.MEDIA_TYPE_PHOTO]\r\n});\r\nwin.open();\r\n{code}", "updateAuthor": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "created": "2012-06-19T09:33:04.000+0000", "updated": "2012-06-19T09:33:04.000+0000" }, { "id": "199128", "author": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "body": "*A bug is not solved just because the programmer cannot reproduce it, while it is confirmed that several users do have that bug.\r\n\r\nTry this:\r\nhttp://developer.appcelerator.com/question/138065/camera-causing-the-app-to-crash-randomly#comment-129771\r\n\r\nIt is working fine on 1.8.2, but does crash on 2.01 on the first start. So far, I experienced two different kind of behaviour with this bug:\r\n\r\n1. App crashes with \"unexpected error\" message\r\n2. After a few seconds of black screen, the app is showing a completely different view of my app\r\n\r\nIt happens when i do a clean build of the app while my Samsung I9001 is connected via USB and I ran the app the first time. Once I switch to 2.0, and run again, everything is working fine.\r\n\r\nAnother detail: It doesnt matter which cam-app i use (build-in Camera or ZoomFX), the error is the same.\r\n\r\n", "updateAuthor": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-06-19T10:20:54.000+0000", "updated": "2012-06-19T10:20:54.000+0000" }, { "id": "199130", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Marcel - can you please confirm that you can reproduce this issue with the latest master (2.1.0) build?", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-19T10:30:11.000+0000", "updated": "2012-06-19T10:30:11.000+0000" }, { "id": "199297", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Opie can u please build your application with titanium sdk 2.0.1 and test it on android device with android version 2.2. App will crash on first use. But if u use titanium sdk 1.8.1 and test it on same device it's working fine.", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-19T21:56:26.000+0000", "updated": "2012-06-19T21:56:26.000+0000" }, { "id": "199310", "author": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "body": "@Neeraj\r\n\r\nI have this error with 2.0.1 GA2 and 2.0.2 GA. My studio tells me that 2.0.2 GA is the newest version. Where do you get 2.1.0???", "updateAuthor": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-06-20T00:14:13.000+0000", "updated": "2012-06-20T00:14:13.000+0000" }, { "id": "199329", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@marcel, @nilesh - Please try this issue with the latest build (choose master from the drop down box) from the link as we have fixed a very similar issue: http://builds.appcelerator.com.s3.amazonaws.com/index.html", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-20T08:17:06.000+0000", "updated": "2012-06-20T08:17:06.000+0000" }, { "id": "199524", "author": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "body": "Tested with mobilesdk-2.1.0.v20120620184154-osx.zip. The bug seems to be gone now. Big thanks to the appcelerator staff for fixing that annoying bug!", "updateAuthor": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-06-20T23:56:13.000+0000", "updated": "2012-06-20T23:56:13.000+0000" }, { "id": "199543", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Marcel can u please help me regarding: how to use this mobilesdk-2.1.0.v20120620184154-osx.zip. I have Titanium sdk 2.0.1GA2 and Google API android 2.2.", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-21T06:21:41.000+0000", "updated": "2012-06-21T06:21:41.000+0000" }, { "id": "199545", "author": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "body": "@nilesh:\r\nIn Titanium Studio, you click on \"Help\" and then on \"Install Specific Titanium SDK\" (think in older Studio version it was called something like \"Install SDK from URL\") ther you enter the downloadpath of the desired SDK File. For 2.1.0, you can take on of these: \r\n\r\n\r\nFor OSX \r\nhttp://builds.appcelerator.com.s3.amazonaws.com/mobile/master/mobilesdk-2.1.0.v20120620184154-osx.zip\r\n\r\nFor Windows:\r\nhttp://builds.appcelerator.com.s3.amazonaws.com/mobile/master/mobilesdk-2.1.0.v20120620184154-win32.zip\r\n\r\nFor Linux\r\nhttp://builds.appcelerator.com.s3.amazonaws.com/mobile/master/mobilesdk-2.1.0.v20120620184154-linux.zip\r\n\r\n\r\nAfaik, those versions are only Release Candidates and no Stable releases, thats why they don't pop up in the normal update. Anyhow it took me some while to finde the download url, thanks to Neeraj for helping me out.\r\n\r\nAnd of course dont forget to choose 2.1.0 in your tiapp.xml and rebuild your project.", "updateAuthor": { "name": "fox1986", "key": "fox1986", "displayName": "Marcel Klapschus", "active": true, "timeZone": "Europe/Berlin" }, "created": "2012-06-21T06:28:34.000+0000", "updated": "2012-06-21T06:29:21.000+0000" }, { "id": "199707", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Marcel Thank you for information. I will try this", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-22T01:49:08.000+0000", "updated": "2012-06-22T01:49:08.000+0000" }, { "id": "200492", "author": { "name": "kazuya", "key": "kazuya", "displayName": "Kazuya Chang", "active": true, "timeZone": "America/Los_Angeles" }, "body": "It works. Thanks to all Titanium staff.\r\nTitanium SDK --> 2.1.0, Android SDK --> 2.2", "updateAuthor": { "name": "kazuya", "key": "kazuya", "displayName": "Kazuya Chang", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-06-26T20:39:59.000+0000", "updated": "2012-06-26T21:12:08.000+0000" }, { "id": "215094", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hi,\r\n\r\nI'm using the last SDK (2.1.2.v20120816171609) and I still having this issue.\r\nFrom time to time (when I select a few photos from the picture gallery or just take a photo, the application is crashing. I'm looking for memory leaks but everything seems to be ok.\r\nThe crash happens even before calling the success event.\r\n\r\nHere is a sample of the code:\r\n\r\n\r\n\tfunction chooseAPhoto() {\r\n\t\tTitanium.Media.openPhotoGallery({\r\n\r\n\t\t\tsuccess : function(event) {\r\n\t\t\t\tif (event.mediaType == Ti.Media.MEDIA_TYPE_PHOTO) {\r\n\t\t\t\t\taddImage(event.media);\r\n\t\t\t\t}\r\n\t\t\t},\r\n\t\t\tcancel : function() {\r\n\r\n\t\t\t},\r\n\t\t\terror : function(error) {\r\n\t\t\t},\r\n\t\t\tallowEditing : false,\r\n\t\t\tmediaTypes : [Ti.Media.MEDIA_TYPE_PHOTO]\r\n\t\t});\r\n\t}\r\n\r\nThanks,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-19T16:13:10.000+0000", "updated": "2012-08-19T16:13:10.000+0000" }, { "id": "215105", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Ariel - Can you reproduce this issue consistently with this test case? If yes, please provide the device information and we will attempt to try it on the same device.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-19T21:53:58.000+0000", "updated": "2012-08-19T21:53:58.000+0000" }, { "id": "215107", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Actually, yes and it's happening the same with the KitchenSink sample. I've a Samsung Galaxy S\r\n\r\nThanks,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-19T22:10:46.000+0000", "updated": "2012-08-19T22:10:46.000+0000" }, { "id": "215108", "author": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Reopening based on the last comment.", "updateAuthor": { "name": "ngupta", "key": "ngupta", "displayName": "Neeraj Gupta", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-19T22:14:18.000+0000", "updated": "2012-08-19T22:14:18.000+0000" }, { "id": "216407", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hi,\r\n\r\nI'm trying to deploy this by today.\r\nIs there any progress in fixing this bug?\r\n\r\nRegards,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T05:25:26.000+0000", "updated": "2012-08-28T05:25:26.000+0000" }, { "id": "216409", "author": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I've exactly the same problem with gallery. Tested on HTC Vision(HTC Desire Z).\r\n\r\nThanks,\r\nWacław", "updateAuthor": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T05:35:22.000+0000", "updated": "2012-08-28T05:35:22.000+0000" }, { "id": "216418", "author": { "name": "mbelkin", "key": "mbelkin", "displayName": "Michael Belkin", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I'm experiencing this as well.", "updateAuthor": { "name": "mbelkin", "key": "mbelkin", "displayName": "Michael Belkin", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T08:10:57.000+0000", "updated": "2012-08-28T08:10:57.000+0000" }, { "id": "216704", "author": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "body": "@Ariel Sztern,@Waclaw Luczak,@Michael Belkin can you plz tell me what android version you are using. plz test it on higher version of android (2.3.3>); and let me know whether it's working or not..... ", "updateAuthor": { "name": "nilkash", "key": "nilkash", "displayName": "nilesh kashid", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T21:47:38.000+0000", "updated": "2012-08-28T21:47:38.000+0000" }, { "id": "216706", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I'm using a Samsung Galaxy S3 with android 4.0.3 and the problem persist.\r\nThank you for your help,\r\n\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T22:38:19.000+0000", "updated": "2012-08-28T22:38:19.000+0000" }, { "id": "216707", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I'm sorry android 4.0.4", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-28T22:39:08.000+0000", "updated": "2012-08-28T22:39:08.000+0000" }, { "id": "216975", "author": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I'm using Android 2.3.3. ", "updateAuthor": { "name": "wacaw", "key": "wacaw", "displayName": "Waclaw Luczak", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-08-30T06:05:28.000+0000", "updated": "2012-08-30T06:05:28.000+0000" }, { "id": "217313", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Is there any news regarding this issue? I wasn't able to deploy my app last week because of this bug.\r\n\r\nI really appreciate and support and feedback.\r\n\r\nRegards,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-02T20:28:52.000+0000", "updated": "2012-09-02T20:28:52.000+0000" }, { "id": "218196", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Max, could you please let me know when are you planing to solve this issue? This is stopping my whole application because this common feature it's not working.\r\n\r\nI've been wainting for this for the last 3 weeks, without any answer and I was expecting to have this solved with today's release.\r\n\r\nThanks,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-10T11:46:03.000+0000", "updated": "2012-09-10T11:46:03.000+0000" }, { "id": "218330", "author": { "name": "rahmyhalwani", "key": "rahmyhalwani", "displayName": "Abdelrhman Halwani", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Actually this bug made me frustrated cause, how could i finished the IPhone deployment and it is already accepted on the app store while i am still waiting to have the solution for this for more than three weeks since Mr. Ariel Sztern complained. ", "updateAuthor": { "name": "rahmyhalwani", "key": "rahmyhalwani", "displayName": "Abdelrhman Halwani", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-09-11T01:00:41.000+0000", "updated": "2012-09-11T01:00:41.000+0000" }, { "id": "219600", "author": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "body": "Tested KitchenSink (gallery and camera) and the test case provided by Ariel on Galaxy Nexus (4.1.1) and HTC Droid Incredible 2 (2.3.4). Was unable to reproduce against master(379ffe865ae784b560e7d230c45b078f45a5afaa) over more than a dozen separate attempts per device.\r\n\r\nPlease provide the following to assist reproduction and investigation into this issue:\r\n1) Full (zipped up) Titanium app that reproduces the issue\r\n2) Full logcat output generated by running the provided test app on device. Please only provide log for a test run that results in a crash.\r\n3) Device information (for the device used in steps #1 and #2) such as device model and exact software version\r\n4) Exact reproduction steps\r\n", "updateAuthor": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "created": "2012-09-18T16:09:27.000+0000", "updated": "2012-09-18T16:09:27.000+0000" }, { "id": "220178", "author": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "body": "Closing for the time being as the issue cannot be reproduced internally and more information is needed.", "updateAuthor": { "name": "opiecyrus", "key": "opiecyrus", "displayName": "Opie Cyrus", "active": true, "timeZone": "America/Chicago" }, "created": "2012-09-21T13:33:47.000+0000", "updated": "2012-09-21T13:33:47.000+0000" }, { "id": "221956", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Hi. The bug is still happening, these are the details:\r\n\r\n1) Titanium App: I was able to replicate the bug using the last version of Kitchensink I found in github:\r\n(appcelerator-KitchenSink-2.1.2-2-g3a5099d) compiled with Titanium SDK 2.1.2GA and Android Runtime V8\r\nI think I don't need to enclose it.\r\n\r\n2) http://paste.plurk.com/show/1328314/\r\n\r\n3) Samsung Galaxy S3 (GT-I9300) with Android 4.0.4 Kernel Version: 3.0.15-833154-user\r\n\r\n4) 1- Start the Kitchensink app\r\n 2- Select the Phone Tab\r\n 3- Select the item Camera\r\n 4- Camera Basic\r\n 5- Choose Samsung's default camera\r\n 6- Take photo\r\n 7- Confirm the selected photo\r\n 8- The app goes to the desktop and then restarts\r\n", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-03T20:27:31.000+0000", "updated": "2012-10-03T20:27:31.000+0000" }, { "id": "222066", "author": { "name": "jimmyrocket", "key": "jimmyrocket", "displayName": "Jimmy Forrester-Fellowes", "active": true, "timeZone": "Europe/London" }, "body": "Sony Ericsson Xperia Play also force closing.\r\n\r\nshowCamera() force closes with the following error:\r\n\r\n10-04 16:30:07.881: E/AndroidRuntime(10268): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { act=inline-data dat=file:///sdcard/dcim/Camera/OL/tia54092358.jpg typ=image/jpeg (has extras) }} to activity {com.dn.mobile/org.appcelerator.titanium.TiActivity}: java.lang.NullPointerException\r\n\r\nopenPhotoGallery() works fine.\r\n", "updateAuthor": { "name": "jimmyrocket", "key": "jimmyrocket", "displayName": "Jimmy Forrester-Fellowes", "active": true, "timeZone": "Europe/London" }, "created": "2012-10-04T16:02:46.000+0000", "updated": "2012-10-04T16:02:46.000+0000" }, { "id": "223368", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Please, reopen this case because is not solved yet.\r\n\r\nThanks,", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-13T03:27:44.000+0000", "updated": "2012-10-13T03:27:44.000+0000" }, { "id": "223512", "author": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I've found that the problem is related to the size of the picture you're selecting or taking (file size and MP). If I select a picture of 640x480 or under the 6MP, se function works fine. If the selection is done with a picture (existing or new one) of 6MP or more, the application cancels.\r\n\r\nPlease, now you've an idea of what is happening, please try to solve this ASAP.\r\n\r\nThank you so much,\r\nAriel", "updateAuthor": { "name": "asztern", "key": "asztern", "displayName": "Ariel Sztern", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-10-15T03:14:59.000+0000", "updated": "2012-10-15T03:14:59.000+0000" }, { "id": "230275", "author": { "name": "rziede", "key": "rziede", "displayName": "Rene Ziede", "active": true, "timeZone": "America/Los_Angeles" }, "body": "I have run into this issue as well while testing my application.\r\n\r\nTitanium SDK: 2.1.4.GA\r\nPhone: Sony Ericson Xperia Play\r\nAndroid Runtime: V8\r\nOS: Android 2.3 Gingerbread \r\n\r\nHere is a pastebin with the segment of code being executed and the relevant logcat output from the device.\r\nhttp://pastebin.com/RzeUGC6x\r\n\r\nThe code terminates before any of the call-backs are reached. The camera is opened and the crash occurs immediately after confirming the image taken. \r\n\r\nThe message every time is: \"Sorry! The application (process edu.ufl.ahc.ese) has stopped unexpectedly. Please try again\", and the app closes and restarts.\r\n", "updateAuthor": { "name": "rziede", "key": "rziede", "displayName": "Rene Ziede", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2012-12-06T20:34:01.000+0000", "updated": "2012-12-06T20:34:01.000+0000" }, { "id": "234652", "author": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Reopening based on comments.", "updateAuthor": { "name": "emerriman", "key": "emerriman", "displayName": "Eric Merriman ", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-01-16T15:53:17.000+0000", "updated": "2013-01-16T15:53:17.000+0000" }, { "id": "234675", "author": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Since Kitchen Sink was modified and updated after the original bug was created, I cannot reproduce this issue.\n*Keeping it open for further investigation.*\n\nTested with:\nTitanium Studio, build: 3.0.1.201212181159\nTitanium SDK, build: 2.1.4.GA\nTitanium SDK, build: 3.0.0.GA\n\nDevices:\nGalaxyS3(4.0.4)\nNexus7 (4.1.2)\nDroid3 (2.3.4)", "updateAuthor": { "name": "oromero", "key": "oromero", "displayName": "Olga Romero", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-01-16T17:19:23.000+0000", "updated": "2013-01-16T17:19:23.000+0000" }, { "id": "234726", "author": { "name": "rziede", "key": "rziede", "displayName": "Rene Ziede", "active": true, "timeZone": "America/Los_Angeles" }, "body": "To clarify, of the physical devices I have tested, I only get this error on the Sony Ericson Xperia device. I have tested the above on Motorola, HTC, and LG devices with no difficulty.\r\n\r\n", "updateAuthor": { "name": "rziede", "key": "rziede", "displayName": "Rene Ziede", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-01-17T06:23:12.000+0000", "updated": "2013-01-17T06:23:12.000+0000" }, { "id": "245115", "author": { "name": "dsefton", "key": "dsefton", "displayName": "Daniel Sefton", "active": true, "timeZone": "America/Los_Angeles" }, "body": "Please watch TIMOB-12848. Let us know if you still have the issue after we solve 12848.", "updateAuthor": { "name": "dsefton", "key": "dsefton", "displayName": "Daniel Sefton", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-04-02T01:23:24.000+0000", "updated": "2013-04-02T01:23:24.000+0000" }, { "id": "258536", "author": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "body": "I can't believe that such a critical bug still happens to exist in the SDK while the appcelerator people are busy marketing their service as high quality cross platform development!\r\n\r\nAtleast you can release a temporal fix for our clients!", "updateAuthor": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "created": "2013-06-19T13:55:36.000+0000", "updated": "2013-06-19T13:55:36.000+0000" }, { "id": "259341", "author": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "body": "Why can't you people release an important fix for this bug!! I am still waiting for your supposed fix of 3.2.0!\r\n\r\nI downloaded the master and its not fixed in it.Cmon release a GA today!!!!!!", "updateAuthor": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "created": "2013-06-25T10:25:06.000+0000", "updated": "2013-06-25T10:25:06.000+0000" }, { "id": "259372", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~nezam] You may notice that we have (so far) been unable to reproduce this bug. It is very difficult to fix a bug we can't reproduce in house. Our next step is to try and get one of the devices that causes the problem, and we're getting a Sony Xperia.\n\nIf you have an alternate suggestion, please let us know.", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-06-25T15:42:49.000+0000", "updated": "2013-06-25T15:42:49.000+0000" }, { "id": "259460", "author": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "body": "It fails on the following devices i tested with:\r\n\r\nSony Xperia U\r\nSamsung Galaxy S III\r\nSamsung Nexus S\r\n\r\nAll running ICS or above.\r\n\r\nAlso restarts on emulators.Note this does not restart app all the time.But it does every once out of five times.", "updateAuthor": { "name": "nezam", "key": "nezam", "displayName": "Nezam Uddin", "active": true, "timeZone": "Asia/Kolkata" }, "created": "2013-06-26T04:30:18.000+0000", "updated": "2013-06-26T05:26:24.000+0000" }, { "id": "280536", "author": { "name": "mike@teamworkpm.net", "key": "mike@teamworkpm.net", "displayName": "Mike Butler", "active": true, "timeZone": "Europe/London" }, "body": "Kitchen Sink, Ti 3.1.3. Nexus 7 (4.3) Nexus 5 (4.4)\r\nSeriously guys, surely it can't be too hard to get hold of a nexus to test with your own sample code?\r\n\r\nThis is a huge bug for us - we absolutely have to be able to chose images from the camera roll.\r\n\r\nKeep up the good work, but please, at the very least, change the status of this bug from \"Resolved\" so that it gets some attention. As another commenter pointed out, when you have so many people reporting the problem, then plainly there is a problem.\r\n\r\nMike.", "updateAuthor": { "name": "mike@teamworkpm.net", "key": "mike@teamworkpm.net", "displayName": "Mike Butler", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-21T13:38:36.000+0000", "updated": "2013-11-21T13:38:36.000+0000" }, { "id": "280561", "author": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "body": "[~mike@teamworkpm] We now have multiple Xperias and Nexus(s). It's evidently not just solely an issue of having the specific device. Please note that this ticket is resolved as a _duplicate_ of TIMOB-12848. We're still working on it--it's just consolidated with another ticket.", "updateAuthor": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2013-11-21T16:57:48.000+0000", "updated": "2013-11-21T16:57:48.000+0000" }, { "id": "280568", "author": { "name": "mike@teamworkpm.net", "key": "mike@teamworkpm.net", "displayName": "Mike Butler", "active": true, "timeZone": "Europe/London" }, "body": "Hi Ingo,\r\n\r\n Thanks for the pointer to the duplicate.\r\n\r\n Just a quick note : you left a comment a month ago on that bug saying that you just can't reproduce on any device. A strange quirk I just noticed, if the image in the gallery has ever been viewed by any app, _not just the Ti app_, so for example the Gallery app, then it will work okay in the Ti app (I know that sounds strange but I just tested it with Gallery and Kitchen Sink on a Nexus 7). So maybe that's making it harder for you to reproduce - maybe you've already viewed all of your images before with other apps.\r\n\r\n Again thanks for note on the duplicate.\r\n\r\n Mike.", "updateAuthor": { "name": "mike@teamworkpm.net", "key": "mike@teamworkpm.net", "displayName": "Mike Butler", "active": true, "timeZone": "Europe/London" }, "created": "2013-11-21T17:18:14.000+0000", "updated": "2013-11-21T17:18:14.000+0000" }, { "id": "415221", "author": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket as duplicate as the relevant ticket is linked above.", "updateAuthor": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-03-22T23:10:30.000+0000", "updated": "2017-03-22T23:10:30.000+0000" } ], "maxResults": 49, "total": 49, "startAt": 0 } } }