You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No. If the version name has a "SNAPSHOT" suffix it is, by definition, not a "release" build. def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }
determines whether SNAPSHOT is absent from the version name. The logic is correct.
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") == false }
def isReleaseBuild() { return VERSION_NAME.contains("SNAPSHOT") }
The text was updated successfully, but these errors were encountered: