MCPcopy Create free account
hub / github.com/buttercookie42/DisableTargetAPIBlock / checkExternalSigningConfig

Function checkExternalSigningConfig

app/build.gradle.kts:82–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82fun ApkSigningConfig.checkExternalSigningConfig(): Boolean {
83 return props.exists("$name.keyStore") &&
84 file(props.get("$name.keyStore")).exists() &&
85 props.exists("$name.storePassword") &&
86 props.exists("$name.keyAlias") &&
87 props.exists("$name.keyPassword")
88}
89
90fun ApkSigningConfig.applyExternalSigningConfig() {
91 storeFile = file(props.get("$name.keyStore"))

Callers 1

build.gradle.ktsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected