sh.christian.aaraar.gradle.agp.AndroidExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agp-compat-base Show documentation
Show all versions of agp-compat-base Show documentation
Base compatibility layer for interacting with AGP.
The newest version!
package sh.christian.aaraar.gradle.agp
/**
* A facade of some of the interactions with the `android` extension on an Android module.
*/
interface AndroidExtension {
/**
* Allows for registration of a callback to be called with build type names.
*/
fun onBuildTypes(callback: (String) -> Unit)
}