How to access info.plist from generate .ipa file through actionscript?
Hi All,
Is there any way to access Info.plist from the .IPA generated(I created IPA file from .SWF using ADT command).
I am trying
var prefsFile:File = File.applicationStorageDirectory;
prefsFile = prefsFile.resolvePath("/Applications/Info.plist");
textId.text += prefsFile.exists + " ";
I am getting result as false.
Actually I need to get all the values of Info.plist information in string format from the generated .IPA.
