Skip to content

Commit

Permalink
fix: use gradle.properties instead of local.properties
Browse files Browse the repository at this point in the history
kind of a sloppy mistake
also disable resources shrinking as per fdroid's documentation's advice
  • Loading branch information
abdallahmehiz committed Aug 31, 2024
1 parent 86b5f3b commit 0737390
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
set -e
timestamp=`date +%s`
echo "timestamp=$timestamp" >> local.properties
echo "timestamp=$timestamp" >> gradle.properties
echo "BUILD_TIMESTAMP=$timestamp" >> $GITHUB_ENV
chmod +x ./gradlew
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ android {
buildTypes {
named("release") {
isMinifyEnabled = true
isShrinkResources = true
isShrinkResources = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
Expand Down

0 comments on commit 0737390

Please sign in to comment.