I don't think libgdx provides a platform independent way to do this. Here's how to get the value CFBundleShortVersionStringfor your application using RoboVM CocoaTouch bindings:
NSDictionary infoDictionary = NSBundle.getMainBundle().getInfoDictionary();
String version = infoDictionary.get(new NSString("CFBundleShortVersionString")).toString();
You can use the same method to get CFBundleVersion, etc. from your application Info.plist file.
source
share