Skip to content

Gradle Android - EnvVar to pass signingConfigs params #129

@paulvi

Description

@paulvi

http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Signing-Configurations references http://stackoverflow.com/questions/18328730/how-to-create-a-release-signed-apk-file-using-gradle

android{
    signingConfigs {
        release {
            storeFile file(System.getenv("KEYSTORE"))
            storePassword System.getenv("KEYSTORE_PASSWORD")
            keyAlias System.getenv("KEY_ALIAS")
            keyPassword System.getenv("KEY_PASSWORD")
        }
    }
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions