blob: c59c205b6bfa876d1d0801c973a629a15543f2e9 [file] [log] [blame]
// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8;
import com.android.tools.r8.utils.VersionProperties;
import java.io.IOException;
public final class Version {
public static final String LABEL = "v0.2.0-dev";
private Version() {
}
public static void printToolVersion(String toolName) {
System.out.println(toolName + " " + Version.LABEL);
try {
VersionProperties version =
new VersionProperties(Version.class.getClassLoader());
System.out.println(version.getDescription());
} catch (IOException e) {
System.out.println("eng build");
}
}
}