Skip to content

Commit

Permalink
Read signing.properties in gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
AfzalivE committed Oct 5, 2023
1 parent 82d80b6 commit 171c9f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tv/build.gradle
Expand Up @@ -29,7 +29,7 @@ android {
keyProps.load(new FileInputStream(keyProperties))
} else {
// when building CI server, use signing properties from environment variables
def releaseProperties = System.getenv('RELEASE_SIGNING_PROPERTIES')
def releaseProperties = new ByteArrayInputStream((System.getenv('RELEASE_SIGNING_PROPERTIES') as String).bytes)
keyProps.load(releaseProperties)
}

Expand Down

0 comments on commit 171c9f9

Please sign in to comment.