Skip to content

Commit

Permalink
build: get extra from root project
Browse files Browse the repository at this point in the history
  • Loading branch information
ujizin committed Oct 19, 2024
1 parent a61b56a commit c8ac888
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ fun BaseAppModuleExtension.configApplication(rootProject: Project) = with(rootPr

signingConfigs {
create("release") {
storeFile = file("${extra["RELEASE_STORE_FILE"]}")
storePassword = "${extra["RELEASE_STORE_PASSWORD"]}"
keyAlias = "${extra["RELEASE_KEY_ALIAS"]}"
keyPassword = "${extra["RELEASE_KEY_PASSWORD"]}"
storeFile = file("${rootProject.extra["RELEASE_STORE_FILE"]}")
storePassword = "${rootProject.extra["RELEASE_STORE_PASSWORD"]}"
keyAlias = "${rootProject.extra["RELEASE_KEY_ALIAS"]}"
keyPassword = "${rootProject.extra["RELEASE_KEY_PASSWORD"]}"
}
}

Expand Down

0 comments on commit c8ac888

Please sign in to comment.