Skip to content

Commit b9d3643

Browse files
authored
Update build.gradle.kts
1 parent d38c6eb commit b9d3643

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

broadcast-handler/build.gradle.kts

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ plugins {
55
id("buildlogic.plugins.conventions.library")
66
id("kotlinx-serialization")
77
id("com.vanniktech.maven.publish")
8-
id("signing")
98
}
109

1110
android {
@@ -50,22 +49,3 @@ mavenPublishing {
5049
}
5150
}
5251
}
53-
54-
signing {
55-
val signingInMemoryKeyId: String
56-
val signingInMemoryKey: String
57-
val signingInMemoryKeyPassword: String
58-
59-
if (project.rootProject.file("local.properties").exists()) {
60-
with(Properties().apply { load(FileInputStream(File(rootProject.rootDir, "local.properties"))) }) {
61-
signingInMemoryKeyId = getProperty("signingInMemoryKeyId")
62-
signingInMemoryKey = getProperty("signingInMemoryKey")
63-
signingInMemoryKeyPassword = getProperty("signingInMemoryKeyPassword")
64-
}
65-
} else {
66-
signingInMemoryKeyId = System.getenv("ORG_GRADLE_PROJECT_signingInMemoryKeyId")
67-
signingInMemoryKey = System.getenv("ORG_GRADLE_PROJECT_signingInMemoryKeyId")
68-
signingInMemoryKeyPassword = System.getenv("ORG_GRADLE_PROJECT_signingInMemoryKeyPassword")
69-
}
70-
useInMemoryPgpKeys(signingInMemoryKeyId, signingInMemoryKey, signingInMemoryKeyPassword)
71-
}

0 commit comments

Comments
 (0)