sh.christian.aaraar.gradle.agp.AndroidPackaging.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
import org.gradle.api.provider.SetProperty
interface AndroidPackaging {
val jniLibs: JniLibs
val resources: Resources
interface JniLibs {
val excludes: SetProperty
val pickFirsts: SetProperty
}
interface Resources {
val excludes: SetProperty
val pickFirsts: SetProperty
val merges: SetProperty
}
}