A Gradle plugin that automatically sets release
signingConfigs when the given keystore is valid.
plugins {
id("land.sungbin.android.autosigning.plugin") version "$version"
}
signingInfo {
secretPath = "$rootDir/keystore/secrets.txt"
keystoreSecrets { secretFile ->
val lines = secretFile.readLines()
land.sungbin.android.autosigning.KeystoreSecrets(
storePath = "$rootDir/keystore/quack.pepk",
storePassword = lines[0],
keyAlias = lines[1],
keyPassword = lines[0],
)
}
}
This project is licensed under the MIT License. Please refer to the LICENSE file for details.