Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 8 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "dev.debene.gopher"
minSdk = 24
targetSdk = 35
versionCode = 1
versionName = "2.0"
versionCode = 2
versionName = "2.0.2"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -62,6 +62,12 @@ android {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}

// F-Droid / IzzyOnDroid: omit the AGP dependency-metadata blob from build artifacts.
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
}

dependencies {
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Packaging fixes for F-Droid / IzzyOnDroid.

Omit the AGP dependency-info blob from the APK, pin the Gradle distribution by
SHA-256 for reproducible builds. No user-facing changes.
10 changes: 5 additions & 5 deletions fdroid/dev.debene.gopher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ RepoType: git
Repo: https://github.com/felipedbene/deburrow.git

Builds:
- versionName: "2.0"
versionCode: 1
commit: v2.0
- versionName: "2.0.2"
versionCode: 2
commit: v2.0.2
subdir: app
gradle:
- yes

AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: "2.0"
CurrentVersionCode: 1
CurrentVersion: "2.0.2"
CurrentVersionCode: 2
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionSha256Sum=20f1b1176237254a6fc204d8434196fa11a4cfb387567519c61556e8710aed78
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading