So I think I'm close to the end of my converstion ...
# gradle
r
So I think I'm close to the end of my converstion from gradle to gradle.kts, but I have an error:
SigningConfig with name 'releasekey' not found.
✔️ 1
I've got this:
Copy code
signingConfigs {
        getByName("releasekey") {
            storeFile = file("release.jks")
            storePassword = "snip"
            keyAlias = "release"
            keyPassword = "snip"
        }
    }
I think it should be
create("releasekey")
but it doesn't fix the problem
Ok, my config is above this block so I'm calling
getByName
once before the
create
. I swapped them and it works (and by that I mean it reports the next error...)
g
Yes, it should be create