Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
floschu committed Oct 22, 2024
1 parent fee8c88 commit 2320750
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ simple hydration reminder app

![logo](.media/icon.png)

## Google PlayStore

https://play.google.com/store/apps/details?id=at.florianschuster.hydro

## how to create a release

### local
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ android {

storePassword = localProperties.getProperty("signingStorePassword")
?: System.getenv("SIGNING_STORE_PASSWORD")
?: null
?: null

keyAlias = localProperties.getProperty("signingKeyAlias")
?: System.getenv("SIGNING_KEY_ALIAS")
?: null
?: null

keyPassword = localProperties.getProperty("signingKeyPassword")
?: System.getenv("SIGNING_KEY_PASSWORD")
?: null
?: null
}
}

Expand Down

0 comments on commit 2320750

Please sign in to comment.