Skip to content

Commit

Permalink
Add custom signing keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Wong committed Oct 8, 2024
1 parent 96ca950 commit 4f0e080
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,6 @@ captures/
*~
*.swp

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
# google-services.json

Expand Down
15 changes: 15 additions & 0 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,21 @@ android {
}
}

signingConfigs {
ubique {
storeFile file("keystore.jks")
storePassword System.getenv("KEYSTORE_PASSWORD")
keyAlias System.getenv("KEY_ALIAS")
keyPassword System.getenv("KEY_PASSWORD")
}
}

buildTypes {
release {
signingConfig = signingConfigs.ubique
}
}

buildFeatures {
viewBinding true
compose true
Expand Down
Binary file added keystore.jks
Binary file not shown.

0 comments on commit 4f0e080

Please sign in to comment.