Skip to content

Commit

Permalink
*** TO REVERT ***
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty authored and BillCarsonFr committed May 8, 2023
1 parent 1b21059 commit f1036d4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vector-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ def getVersionCode() {
if (gitBranchName() == "develop") {
return generateVersionCodeFromTimestamp()
} else {
return generateVersionCodeFromVersionName()
// DO NOT COMMIT
return generateVersionCodeFromTimestamp()
}
}

Expand Down Expand Up @@ -276,11 +277,11 @@ android {
// Just override the background color of the launcher icon for the nightly build.
// We need to copy paste this block, this is not done automatically by `initWith release`
postprocessing {
removeUnusedCode true
removeUnusedResources true
removeUnusedCode false
removeUnusedResources false
// We do not activate obfuscation as it makes it hard then to read crash reports, and it's a bit useless on an open source project :)
obfuscate false
optimizeCode true
optimizeCode false
proguardFiles 'proguard-rules.pro'
}
matchingFallbacks = ['release']
Expand Down

0 comments on commit f1036d4

Please sign in to comment.