We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c01d6ea commit 741b524Copy full SHA for 741b524
qs-kotlin-android/build.gradle.kts
@@ -24,8 +24,8 @@ android {
24
25
compilerOptions {
26
jvmTarget.set(JvmTarget.JVM_17)
27
- languageVersion.set(KotlinVersion.KOTLIN_2_0)
28
- apiVersion.set(KotlinVersion.KOTLIN_2_0)
+ languageVersion.set(KotlinVersion.KOTLIN_2_0)
+ apiVersion.set(KotlinVersion.KOTLIN_2_0)
29
}
30
31
@@ -84,5 +84,11 @@ afterEvaluate {
84
85
86
87
- signing { sign(publishing.publications) }
+ signing {
88
+ useInMemoryPgpKeys(
89
+ providers.gradleProperty("signingInMemoryKey").getOrElse(""),
90
+ providers.gradleProperty("signingInMemoryKeyPassword").getOrElse(""),
91
+ )
92
+ sign(publishing.publications)
93
+ }
94
0 commit comments