Skip to content

Commit

Permalink
fix: Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxGalaxy committed Nov 11, 2023
1 parent fe7cdbd commit 2ce9530
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def signingEnabled = false
def keyStorePassword = ""

if (KEYSTOREPASSWORD != null) {
password = KEYSTOREPASSWORD
keyStorePassword = KEYSTOREPASSWORD
signingEnabled = true
} else if (secretsPropertiesFile.exists()) {
if (secretsProperties.getProperty('KEYSTOREPASSWORD') != null) {
Expand Down Expand Up @@ -70,6 +70,7 @@ android {
applicationId "com.dragon.ide"
minSdk 21
targetSdk 28
compileSdkVersion 33
versionCode getGitCommitCount()
versionName "1.0 Alpha01-Snapshot-" + getCommitHash() + "-commit-no-" + getGitCommitCount().toString()

Expand Down

0 comments on commit 2ce9530

Please sign in to comment.