Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
}
storePassword = System.getenv("KEYSTORE_PASSWORD") ?: ""
keyAlias = System.getenv("KEY_ALIAS") ?: "dedx-upload"
keyPassword = System.getenv("KEYSTORE_PASSWORD") ?: ""
keyPassword = System.getenv("KEY_PASSWORD") ?: System.getenv("KEYSTORE_PASSWORD") ?: ""
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The build now supports a separate key password via KEY_PASSWORD, but the release GitHub Actions workflow currently only exports KEYSTORE_PASSWORD (see .github/workflows/release.yml:38-42). If the key password differs from the keystore password, the CI release signing will still fail because it will fall back to KEYSTORE_PASSWORD. Consider updating the release workflow/secrets (and any docs) to set KEY_PASSWORD when needed, or explicitly document that both passwords must match.

Suggested change
keyPassword = System.getenv("KEY_PASSWORD") ?: System.getenv("KEYSTORE_PASSWORD") ?: ""
keyPassword = System.getenv("KEY_PASSWORD") ?: ""

Copilot uses AI. Check for mistakes.
}
}
compileSdk = 34
Expand Down
Loading