All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sh.christian.aaraar.gradle.agp.AndroidPackaging.kt Maven / Gradle / Ivy

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
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy