| // 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"; |
| public static void printToolVersion(String toolName) { |
| System.out.println(toolName + " " + Version.LABEL); |
| VersionProperties version = |
| new VersionProperties(Version.class.getClassLoader()); |
| System.out.println(version.getDescription()); |
| } catch (IOException e) { |
| System.out.println("eng build"); |