Sources

Added in 7.2.0

interface Sources


Provides access to all source directories for a Variant.

Summary

Public functions

SourceDirectories.Flat

Access (and potentially creates) a new SourceDirectories.Flat for a custom source type that can be referenced by its name.

Public properties

SourceDirectories.Flat?

Access to the aidl sources folders if com.android.build.api.dsl.BuildFeatures.aidl is true otherwise null

SourceDirectories.Layered?

Access to the Android assets sources folders.

SourceDirectories.Flat?

Access to the Baseline profiles source folders.

SourceDirectories.Flat?

Access to the Java source folders.

SourceDirectories.Layered?

Access to the JNI libraries folders

SourceDirectories.Flat?

Access to the Kotlin source folders.

ManifestFiles

Access to all android manifest files.

SourceDirectories.Layered?

Access to the machine learning models folders if com.android.build.api.dsl.ApplicationBuildFeatures.mlModelBinding is true otherwise null

SourceDirectories.Flat?

Access to the renderscript sources folders if com.android.build.api.dsl.BuildFeatures.renderScript is true otherwise null.

SourceDirectories.Layered?

Access to the Android resources sources folders if the component supports android resources or if com.android.build.api.dsl.LibraryBuildFeatures.androidResources is true for library variants, otherwise null.

SourceDirectories.Flat?

Access to the Java-style resources sources folders.

SourceDirectories.Layered?

Access to the shaders sources folders if com.android.build.api.dsl.BuildFeatures.shaders is true otherwise null

Public functions

getByName

Added in 7.2.0
fun getByName(name: String): SourceDirectories.Flat

Access (and potentially creates) a new SourceDirectories.Flat for a custom source type that can be referenced by its name.

The first caller will create the new instance, other callers with the same name will get the same instance returned. Any callers can obtain the final list of the folders registered under this custom source type by calling SourceDirectories.Flat.all.

These sources directories are attached to the variant and will be visible to Android Studio.

Public properties

aidl

Added in 7.3.0
val aidl: SourceDirectories.Flat?

Access to the aidl sources folders if com.android.build.api.dsl.BuildFeatures.aidl is true otherwise null

assets

Added in 7.3.0
val assets: SourceDirectories.Layered?

Access to the Android assets sources folders.

baselineProfiles

Added in 8.0.0
val baselineProfiles: SourceDirectories.Flat?

Access to the Baseline profiles source folders.

java

Added in 7.2.0
val java: SourceDirectories.Flat?

Access to the Java source folders.

jniLibs

Added in 7.3.0
val jniLibs: SourceDirectories.Layered?

Access to the JNI libraries folders

kotlin

Added in 7.3.0
val kotlin: SourceDirectories.Flat?

Access to the Kotlin source folders.

manifests

Added in 8.5.2
val manifests: ManifestFiles

Access to all android manifest files. Main manifest file is always the first one.

mlModels

Added in 7.3.0
val mlModels: SourceDirectories.Layered?

Access to the machine learning models folders if com.android.build.api.dsl.ApplicationBuildFeatures.mlModelBinding is true otherwise null

renderscript

Added in 7.3.0
Deprecated in 7.3.0
val renderscript: SourceDirectories.Flat?

Access to the renderscript sources folders if com.android.build.api.dsl.BuildFeatures.renderScript is true otherwise null. RenderScript APIs are deprecated starting in Android 12 See more.

res

Added in 7.3.0
val res: SourceDirectories.Layered?

Access to the Android resources sources folders if the component supports android resources or if com.android.build.api.dsl.LibraryBuildFeatures.androidResources is true for library variants, otherwise null.

resources

Added in 7.4.0
val resources: SourceDirectories.Flat?

Access to the Java-style resources sources folders.

shaders

Added in 7.3.0
val shaders: SourceDirectories.Layered?

Access to the shaders sources folders if com.android.build.api.dsl.BuildFeatures.shaders is true otherwise null