Closed GoogleCodeExporter closed 8 years ago
Groups thread:
http://groups.google.com/group/openintents/browse_thread/thread/92e110347bd0afd2
GCI Task:
http://www.google-melange.com/gci/task/view/google/gci2011/7234233
Temporary Fix (Maybe Permanent?):
String perms = (mContextFile.canRead() ? "R" : "-") +
(mContextFile.canWrite() ? "W" : "-") +
((Build.VERSION.SDK_INT > 9) ? (mContextFile.canExecute() ?
"X" : "-") : "-");
Original comment by philipha...@gmail.com
on 24 Dec 2011 at 11:38
Attachments:
Correction:
String perms = (mContextFile.canRead() ? "R" : "-") +
(mContextFile.canWrite() ? "W" : "-") +
((Build.VERSION.SDK_INT > Build.VERSION_CODES.GINGERBREAD) ? (mContextFile.canExecute() ?
"X" : "-") : "-");
Original comment by philipha...@gmail.com
on 26 Dec 2011 at 7:43
Attachments:
http://www.google-melange.com/gci/task/view/google/gci2011/7120275
Original comment by peli0...@googlemail.com
on 26 Dec 2011 at 9:22
This issue was closed by revision r3946.
Original comment by rmce...@gmail.com
on 29 Dec 2011 at 6:59
Original issue reported on code.google.com by
rmce...@gmail.com
on 24 Dec 2011 at 5:52