com.android.build.gradle.internal.api.LibraryVariantOutputImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
Gradle plug-in to build Android applications.
/*
* Copyright (C) 2014 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.build.gradle.internal.api;
import com.android.annotations.NonNull;
import com.android.annotations.Nullable;
import com.android.build.gradle.api.LibraryVariantOutput;
import com.android.build.gradle.internal.variant.BaseVariantOutputData;
import com.android.build.gradle.internal.variant.LibVariantOutputData;
import org.gradle.api.tasks.bundling.Zip;
/**
* Implementation of variant output for library variants.
*
* This is a wrapper around the internal data model, in order to control what is accessible
* through the external API.
*/
public class LibraryVariantOutputImpl extends BaseVariantOutputImpl implements LibraryVariantOutput {
private final LibVariantOutputData variantOutputData;
public LibraryVariantOutputImpl(@NonNull LibVariantOutputData variantOutputData) {
this.variantOutputData = variantOutputData;
}
@NonNull
@Override
protected BaseVariantOutputData getVariantOutputData() {
return variantOutputData;
}
@Nullable
@Override
public Zip getPackageLibrary() {
return variantOutputData.packageLibTask;
}
@Override
public int getVersionCode() {
throw new RuntimeException("Libraries are not versioned");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy