v3.0 build errors on F-Droid
relan opened this issue · comments
v3.0 fails to build on F-Droid. Steps to reproduce: run gradle assembleRelease
.
First issue is that com.android.tools.build:gradle:3.0.0
is available in the new Google Maven repo, not JCenter. Solution: add google()
to the repositories
sections of the root build.gradle
.
Second issue is failing lintVitalRelease
task: Error: Non-translatable resources should only be defined in the base values/ folder
. Solution: fix those errors or disable them (add checkReleaseBuilds false
into build.gradle
) or make them non-fatal (add abortOnError false
into build.gradle
).
Hello,
Both the issues are fixed now! :)
Great! F-Droid will pull the next release automatically when it's out.
@relan Can you trigger a rebuild for Torchie at F-Droid? https://f-droid.org/en/packages/in.blogspot.anselmbros.torchie/ doesn't point to latest release
Do you mean 3.1? Just tag a release and F-Droid will build it.
That's cool! Thanks @relan