Open GoogleCodeExporter opened 9 years ago
+1, same thing here. app does not really crash, since ipad crash log folder is
empty, it most probably just breaks on some file operation.
Original comment by makc.the...@gmail.com
on 12 Apr 2013 at 1:15
so far in our app we can work around the crash by inserting
// aborting any file operations...
dispatchEvent(new
StageWebviewDiskEvent(StageWebviewDiskEvent.START_DISK_PARSING));
dispatchEvent(new
StageWebviewDiskEvent(StageWebviewDiskEvent.END_DISK_PARSING));
return;
after
http://code.google.com/p/stagewebviewbridge/source/browse/trunk/StageWebViewBrid
ge/src/es/xperiments/media/StageWebViewDisk.as#91
and using view.loadString() for html stuff.
Original comment by makc.the...@gmail.com
on 12 Apr 2013 at 1:34
thanks for reply.
found the solution:
in the file StageWebViewDisk.as
line no:125
_applicationTempDir = new File(File.applicationDirectory.nativePath
+"/\.\./tmp");
replaced with:
_applicationTempDir = new File(File.applicationDirectory.nativePath
+"/\.\./SWVBTmp");
this worked for me.
Original comment by sisangia...@gmail.com
on 12 Apr 2013 at 3:55
Original issue reported on code.google.com by
sisangia...@gmail.com
on 5 Apr 2013 at 8:49