com.android.builder.model
Interface SigningConfig


public interface SigningConfig

A Signing Configuration


Method Summary
 java.lang.String getKeyAlias()
          Returns the key alias name.
 java.lang.String getKeyPassword()
          return the key password.
 java.lang.String getName()
          Returns the name of the Signing config
 java.io.File getStoreFile()
          Returns the keystore file.
 java.lang.String getStorePassword()
          Returns the keystore password.
 java.lang.String getStoreType()
          Returns the store type.
 boolean isSigningReady()
          Returns whether the config is fully configured for signing.
 

Method Detail

getName

@NonNull
java.lang.String getName()
Returns the name of the Signing config

Returns:
the name of the config

getStoreFile

@Nullable
java.io.File getStoreFile()
Returns the keystore file.

Returns:
the file.

getStorePassword

@Nullable
java.lang.String getStorePassword()
Returns the keystore password.

Returns:
the password.

getKeyAlias

@Nullable
java.lang.String getKeyAlias()
Returns the key alias name.

Returns:
the key alias name.

getKeyPassword

@Nullable
java.lang.String getKeyPassword()
return the key password.

Returns:
the password.

getStoreType

@Nullable
java.lang.String getStoreType()
Returns the store type.

Returns:
the store type.

isSigningReady

boolean isSigningReady()
Returns whether the config is fully configured for signing.

Returns:
true if all the required information are present.