updateIosVersion static method
Updates the version in the iOS plist file. @param {String} versionName The new version name (e.g., "1.0.1"). @param {String} buildNumber The new build number (e.g., "1"). @returns {bool} True if the update was successful, false otherwise.
Implementation
static bool updateIosVersion(String versionName, String buildNumber) {
return FileService.updateIosVersion(versionName, buildNumber);
}