-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please never forget increasing versionCode for new releases #2
Comments
Oh, PS, while I'm here:
That can easily be avoided with a tiny addition to your android {
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
} For some background: that BLOB is supposed to be just a binary representation of your app's dependency tree. But as it's encrypted with a public key belonging to Google, only Google can read it – and nobody else can even verify what it really contains. More details can be found e.g. here: Ramping up security: additional APK checks are in place with the IzzyOnDroid repo. Thanks in advance! |
Hiya! Thanks for pointing that out! I have fixed the build and have removed the Google dependency blob |
Thanks! That worked out fine:
So this update will become available here with the next sync around 6 pm UTC. Oh: be welcome to pick a badge and link there e.g. from your Readme if you wish 😉 |
thanks! I sure will! :) |
Hi! I just want to clarify that the only data the app downloads is from the domain reykunyu.lu, which has its source code in the github link mentioned in the readme. It does not download any data from github (as I know of) |
Thanks also for the notes! Updated that accordingly (effective with the next sync). Quite mixed stuff: libre, but also NC or maybe even proprietary content according to the "credits" on the site, so I've left it with NonFreeNet still but just replaced Gitub with reykunyu.lu in the description. Thanks for adding the badge to your Readme 🤩 |
No problem! |
Unfortunately your hotfix release will reach no existing installation as you seem to have forgotten increasing
versionCode
:That means the already existing version also had
versionCode: 3
. There are 5 releases listed, which means it should have been at leastversionCode: 5
by now 😉The text was updated successfully, but these errors were encountered: