updateIosVersion static method

bool updateIosVersion(
  1. String versionName,
  2. String buildNumber
)

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);
}