79586478

Date: 2025-04-22 12:39:47
Score: 0.5
Natty:
Report link

This error I got when taking app bundle build

I added signingConfigs in app level build gradle

here is the one I got error while using

when using this am getting the error


    signingConfigs {
        create("release") {
            keyAlias = keystoreProperties["keyAlias"] as String
            keyPassword = keystoreProperties["keyPassword"] as String
            storeFile = keystoreProperties["storeFile"]?.let { file(it) }
            storePassword = keystoreProperties["storePassword"] as String
        }
    }

and this code am changed

    signingConfigs {
        create("release") {
            keyAlias keystoreProperties["keyAlias"]
            keyPassword keystoreProperties["keyPassword"] 
            storeFile keystoreProperties["storeFile"] ? file(keystoreProperties['storeFile']):null
            storePassword keystoreProperties["storePassword"]
        }
    }
Reasons:
  • RegEx Blacklisted phrase (1): am getting the error
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Navas Shareef