245246247248249250251252
} } protected JSONObject getFullPlist() throws Exception { File plist = new File(app, "Info.plist"); PlistFileUtils util = new PlistFileUtils(plist); return util.toJSON(); }
7071727374757677
/** * load the content of the binary file and returns it as a json object. */ public JSONObject readContentFromBinaryFile(File binaryFile) throws Exception { PlistFileUtils util = new PlistFileUtils(binaryFile); return util.toJSON(); }