File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ plugins {
5
5
id(" buildlogic.plugins.conventions.library" )
6
6
id(" kotlinx-serialization" )
7
7
id(" com.vanniktech.maven.publish" )
8
- id(" signing" )
9
8
}
10
9
11
10
android {
@@ -50,22 +49,3 @@ mavenPublishing {
50
49
}
51
50
}
52
51
}
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
- }
You can’t perform that action at this time.
0 commit comments