fastlane.swift cannot find 'ENV' in scope – Ios swift
I am new to fastlane, trying to read environment variable in fastfile.swift which has following import Foundation class Fastfile: LaneFile { . . . func createRCBuildLane() { beforeAll() ensureGitBranch(branch: "qa") let commitMessage = "RC_Build_Version_" + getVersionNumber(target: "Example App") + "_Build_"…