Skip to content

Commit

Permalink
Fix ktlint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghmutualmobile committed Oct 25, 2023
1 parent b268cf0 commit 7b20d5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ android {
if (propertiesFile.exists()) {
create("release") {
// Load keystore
val keystoreProperties = Properties().apply{
val keystoreProperties = Properties().apply {
load(propertiesFile.reader())
}
storeFile = File(keystoreProperties.getProperty("storeFile"))
Expand All @@ -47,7 +47,6 @@ android {
)
runCatching { signingConfigs.getByName("release") }
.onSuccess { safeConfig -> signingConfig = safeConfig }

}
}
compileOptions {
Expand Down
2 changes: 1 addition & 1 deletion wearablesample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
if (propertiesFile.exists()) {
create("release") {
// Load keystore
val keystoreProperties = Properties().apply{
val keystoreProperties = Properties().apply {
load(propertiesFile.reader())
}
storeFile = File(keystoreProperties.getProperty("storeFile"))
Expand Down

0 comments on commit 7b20d5b

Please sign in to comment.