Read SharedObject directly from sol file (Android)
Made a bit of an error in a recent release of an Android app and accidentally changed the name of the swf that was packaged with the app. (We upgraded this project from FB to IntelliJ and ignored the output name change.)
It seemed fine in testing however we use a SharedObject in this app to store some user data and I hadn't realised that a SharedObject is stored in a path containing the name of the swf:
#SharedObjects/app.swf/objectname.sol
So the name change to swf meant that our users are losing their data when upgrading the app.
#SharedObjects/app_new.swf/objectname.sol
I was hoping to be able to do a new update and merge the two objects, but I can't seem to load the old data with SharedObject.
Does anyone know how to read the .sol format directly? Is there a library available anywhere?
I can access the file in the old path but I'm hoping I don't have to write a parser.
