-
Notifications
You must be signed in to change notification settings - Fork 2
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
APK at v3.2.1 broken #7
Comments
I did not realise there was no version code on the packages, I suspect it is down to the new build process I am using and I will update it with a fix ASAP |
I think I have found the root cause and I will be able to fix it by 18:00 UTC+0 |
This means you should be able to re-enable updates for Quacker |
Sorry to disappoint you – but the APKs you've attached a few minutes ago have the same problem still:
(I just had manually triggered an update to check and make sure) Like last time, only the "fat build" is unaffected. |
Yh, I think it'll be best to disable updates for now as it seems I may have screwed something up with the build scripts, I'll keep you updated! |
Err… I just got a hint from someone who's interest was sparked. Could it be you've pokered a bit too high, and
? |
That would be this line. You didn't seem to do that before: the |
I just learned:
So yeah, this must be the culprit – as |
Done, I have removed the factor 10 |
@IzzySoft the version code issue is now fixed |
Thanks! That worked out (goes live with the next sync around 7 pm UTC) – and left only…
The former just needs an explanation (what is read from local storage there needing that permission? The description of the app is rather short and gives no clue to that). The latter one is solved easily: 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. |
READ_EXTERNAL_STORAGE is used for importing data from a file |
Thanks! Added to the app's "green list" (which includes the reason given being shown along the permission, effective immediately). Will you take care for the |
I had added this code to the build file:
Is that enough to take care of it? |
Yes, that should do – thanks! Next release should tell us if it worked out 😉 |
Can you please check what went wrong with the last release? The packages contain no
versionCode
:(this is from the arm64 APK, but the armeabi has the same issue). I had to disable updates for now until this is fixed, as that invalid APK would be pulled over and again.
Thanks in advance for checking and fixing!
The text was updated successfully, but these errors were encountered: