SdkComponents

@Incubating interface SdkComponents
com.android.build.api.dsl.SdkComponents

Summary

Properties

abstract Provider<RegularFile>

The path to the Android Debug Bridge (ADB) executable from the Android SDK.

abstract Provider<List<RegularFile>>

The bootclasspath that will be used to compile classes in this project.

abstract Provider<Directory>

The path to the Android NDK that Gradle uses for this project.

abstract Provider<Directory>

The path to the Android SDK that Gradle uses for this project.

Properties

adb

abstract val adb: Provider<RegularFile>

The path to the Android Debug Bridge (ADB) executable from the Android SDK.

bootClasspath

abstract val bootClasspath: Provider<List<RegularFile>>

The bootclasspath that will be used to compile classes in this project.

The returned Provider can only be used at execution time and therefore must be used as a org.gradle.api.Task input to do so.

ndkDirectory

abstract val ndkDirectory: Provider<Directory>

The path to the Android NDK that Gradle uses for this project.

You can install the Android NDK by either using the SDK manager or downloading the standalone NDK package.

sdkDirectory

abstract val sdkDirectory: Provider<Directory>

The path to the Android SDK that Gradle uses for this project.

To learn more about downloading and installing the Android SDK, read Update Your Tools with the SDK Manager