io.hkhc.gradle.internal.android.BaseVariant.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jarbird-android Show documentation
Show all versions of jarbird-android Show documentation
Wrapping boilerplate code of publishing artifact to maven repository (for Android project)
The newest version!
/*
* Copyright (c) 2021. Herman Cheung
*
* 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 io.hkhc.gradle.internal.android
interface BaseVariant {
/**
* Returns the name of the variant. Guaranteed to be unique.
*/
fun getName(): String?
/**
* Returns a description for the build variant.
*/
fun getDescription(): String?
/**
* Returns a list of sorted SourceProvider in order of ascending order, meaning, the earlier
* items are meant to be overridden by later items.
*
* @return a list of source provider
*/
fun getSourceSets(): List
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy