Please add support to non-binary `Info.plist` files. In the `ios-sim/src/commands/launch.js` (also other files) we are using the `bplist-parser` library. But the launch or install command does not work when the `Info.plist` is a text file. Related code [here](https://github.com/ios-control/ios-sim/blob/bd6e3ba0a81304d9fc3d18c83deed10145ba207f/src/commands/launch.js#L6). If we use `plutil -convert binary1 Info.plist` it works, but then the `Info.plist` becomes not human-readable. Possibly checking if the file is non-binary and using the [plist-parser](https://www.npmjs.com/package/plist-parser) library or another similar one.