1f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel// for details. All rights reserved. Use of this source code is governed by a
3f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel// BSD-style license that can be found in the LICENSE file.
4f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel
5f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Rousselpackage multidex001;
6f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel
7f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel/**
8f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel * Class directly referenced from Activity, will be kept in main dex. The class is not referenced
9f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel * by <clinit> or <init>, its direct references are not kept in main dex.
10f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel */
11f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Rousselpublic class ClassForMainDex {
12f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel
13f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel    public static int getVersion() {
14f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel        return Version.getVersion();
15f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel    }
16f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel
17f820a57655a3b5712825de91bf9d95b9d88e84bfYohann Roussel}
18