Skip to content

Commit

Permalink
Added fix for signing
Browse files Browse the repository at this point in the history
  • Loading branch information
Reedyuk committed Nov 10, 2023
1 parent 98fce81 commit 4f294d7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import java.util.Properties

dependencyResolutionManagement {
versionCatalogs {
val kotlinVersion = "1.9.10"
Expand Down Expand Up @@ -44,3 +46,15 @@ dependencyResolutionManagement {
}

include(":library")

val properties = Properties()
val propertiesFile = File("library/gradle.properties")
if (propertiesFile.exists()) {
properties.load(propertiesFile.inputStream())
}
val PUBLISH_NAME = properties.getProperty("PUBLISH_NAME")

rootProject.name = PUBLISH_NAME
rootProject.children.forEach {
it.name = PUBLISH_NAME
}

0 comments on commit 4f294d7

Please sign in to comment.