1// Copyright (c) 2017, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4package com.android.tools.r8;
5
6import com.android.tools.r8.graph.AppInfo;
7import com.android.tools.r8.graph.DexApplication;
8import com.android.tools.r8.utils.AndroidApp;
9
10public class CompilationResult {
11  public final AndroidApp androidApp;
12  public final DexApplication dexApplication;
13  public final AppInfo appInfo;
14
15  public CompilationResult(AndroidApp androidApp, DexApplication dexApplication, AppInfo appInfo) {
16    this.androidApp = androidApp;
17    this.dexApplication = dexApplication;
18    this.appInfo = appInfo;
19  }
20}
21