PrivacySandboxSdkExtension

Added in 7.4.0

@Incubating
interface PrivacySandboxSdkExtension


Summary

Public functions

Unit
Unit

Specifies options for the R8/D8 optimization tool.

Unit

Public properties

String

Specifies the version of the SDK Build Tools to use when building your project.

PrivacySandboxSdkBundle
Int?

Specifies the API level to compile your project against.

Int?
String?
MutableMap<StringAny>
Int?
String?
String?
PrivacySandboxSdkOptimization

Specifies options for the R8/D8 optimization tool.

SigningConfig

Public functions

bundle

Added in 7.4.0
@Incubating
fun bundle(action: PrivacySandboxSdkBundle.() -> Unit): Unit

optimization

Added in 8.5.0-alpha06
@Incubating
fun optimization(action: PrivacySandboxSdkOptimization.() -> Unit): Unit

Specifies options for the R8/D8 optimization tool.

For more information about the properties you can configure in this block, see PrivacySandboxSdkOptimization.

signingConfig

Added in 8.1.0
@Incubating
fun signingConfig(action: SigningConfig?.() -> Unit): Unit

Public properties

buildToolsVersion

Added in 7.4.0
var buildToolsVersionString

Specifies the version of the SDK Build Tools to use when building your project.

By default, the plugin uses the minimum version of the build tools required by the version of the plugin you're using. To specify a different version of the build tools for the plugin to use, specify the version as follows:

android {
// Specifying this property is optional.
buildToolsVersion "26.0.0"
}

For a list of build tools releases, read the release notes.

Note that the value assigned to this property is parsed and stored in a normalized form, so reading it back may give a slightly different result.

bundle

Added in 7.4.0
val bundlePrivacySandboxSdkBundle

compileSdk

Added in 7.4.0
var compileSdkInt?

Specifies the API level to compile your project against. The Android plugin requires you to configure this property.

This means your code can use only the Android APIs included in that API level and lower. You can configure the compile sdk version by adding the following to the android block: compileSdk = 26.

You should generally use the most up-to-date API level available. If you are planning to also support older API levels, it's good practice to use the Lint tool to check if you are using APIs that are not available in earlier API levels.

The value you assign to this property is parsed and stored in a normalized form, so reading it back may return a slightly different value.

compileSdkExtension

Added in 7.4.0
var compileSdkExtensionInt?

compileSdkPreview

Added in 7.4.0
var compileSdkPreviewString?

experimentalProperties

Added in 8.2.0-beta03
val experimentalPropertiesMutableMap<StringAny>

minSdk

Added in 7.4.0
var minSdkInt?

minSdkPreview

Added in 7.4.0
var minSdkPreviewString?

namespace

Added in 7.4.0
Deprecated in 7.4.0
var namespaceString?

optimization

Added in 8.5.0-alpha06
val optimizationPrivacySandboxSdkOptimization

Specifies options for the R8/D8 optimization tool.

For more information about the properties you can configure in this block, see PrivacySandboxSdkOptimization.

signingConfig

Added in 8.1.0
val signingConfigSigningConfig