Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update AndroidArtifactOutput.java, not exist (com.android.build.VariantOutput) #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
package com.android.builder.model;

import com.android.annotations.NonNull;
import com.android.build.VariantOutput;
//import com.android.build.VariantOutput; this file is not exist

import java.io.File;

/**
* The Actual output for a {@link AndroidArtifact}, which can be one file at the minimum or
* several APKs in case of pure splits configuration.
*/
public interface AndroidArtifactOutput extends VariantOutput {
public interface AndroidArtifactOutput /*extends VariantOutput*/ {

/**
* Returns the name of the task used to generate this artifact output.
Expand Down