me.xx2bab.polyfill.matrix.base.SelfManageableProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyfill-matrix Show documentation
Show all versions of polyfill-matrix Show documentation
Hook Toolset for Android App Build System.
package me.xx2bab.polyfill.matrix.base
import com.android.build.api.extension.AndroidComponentsExtension
import com.android.build.api.variant.Variant
import org.gradle.api.Project
interface SelfManageableProvider {
fun initialize(project: Project,
androidExtension: AndroidComponentsExtension<*, *>,
variant: Variant)
fun get(defaultValue: T? = null): T?
fun isPresent(): Boolean
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy