SigningConfig

public interface SigningConfig

Known direct subclasses
ApkSigningConfig

DSL object to configure signing configs.


DSL object for configuring options related to signing for APKs and bundles.

ApkSigningConfig extends this with options relating to just APKs

Summary

Public methods

abstract String

Key alias used when signing.

abstract String

Key password used when signing.

abstract File

Store file used when signing.

abstract String

Store password used when signing.

abstract String

Store type used when signing.

abstract void

Copies all properties from the given signing config.

abstract void
setKeyAlias(String keyAlias)

Key alias used when signing.

abstract void
setKeyPassword(String keyPassword)

Key password used when signing.

abstract void
setStoreFile(File storeFile)

Store file used when signing.

abstract void
setStorePassword(String storePassword)

Store password used when signing.

abstract void
setStoreType(String storeType)

Store type used when signing.

Public methods

getKeyAlias

abstract String getKeyAlias()

Key alias used when signing.

See Signing Your Applications

getKeyPassword

abstract String getKeyPassword()

Key password used when signing.

See Signing Your Applications

getStoreFile

abstract File getStoreFile()

Store file used when signing.

See Signing Your Applications

getStorePassword

abstract String getStorePassword()

Store password used when signing.

See Signing Your Applications

getStoreType

abstract String getStoreType()

Store type used when signing.

See Signing Your Applications

initWith

abstract void initWith(@NonNull SigningConfig that)

Copies all properties from the given signing config.

setKeyAlias

abstract void setKeyAlias(String keyAlias)

Key alias used when signing.

See Signing Your Applications

setKeyPassword

abstract void setKeyPassword(String keyPassword)

Key password used when signing.

See Signing Your Applications

setStoreFile

abstract void setStoreFile(File storeFile)

Store file used when signing.

See Signing Your Applications

setStorePassword

abstract void setStorePassword(String storePassword)

Store password used when signing.

See Signing Your Applications

setStoreType

abstract void setStoreType(String storeType)

Store type used when signing.

See Signing Your Applications